Switched date operations to utc

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-09-04 15:23:15 -04:00
parent f931a375cf
commit 4752d12aaa
13 changed files with 81 additions and 34 deletions

View File

@@ -108,7 +108,7 @@ namespace MediaBrowser.Common.Net.Handlers
if (SourceStream != null)
{
value = File.GetLastWriteTime(Path);
value = File.GetLastWriteTimeUtc(Path);
}
return Task.FromResult<DateTime?>(value);