cloud sync updates

This commit is contained in:
Luke Pulverenti
2015-02-28 08:42:47 -05:00
parent f0594dea77
commit 2bf2d5fd76
24 changed files with 732 additions and 210 deletions

View File

@@ -1598,14 +1598,11 @@ namespace MediaBrowser.Server.Implementations.Dto
var path = imageInfo.Path;
// See if we can avoid a file system lookup by looking for the file in ResolveArgs
var dateModified = imageInfo.DateModified;
ImageSize size;
try
{
size = _imageProcessor.GetImageSize(path, dateModified);
size = _imageProcessor.GetImageSize(imageInfo);
}
catch (FileNotFoundException)
{