add new mirror mode

This commit is contained in:
Luke Pulverenti
2014-04-13 13:27:13 -04:00
parent b6ca79b73f
commit 8df1ebe499
31 changed files with 446 additions and 370 deletions

View File

@@ -360,7 +360,7 @@ namespace MediaBrowser.Server.Implementations.Dto
{
return _imageProcessor.GetImageCacheTag(item, type);
}
catch (IOException ex)
catch (Exception ex)
{
_logger.ErrorException("Error getting {0} image info", ex, type);
return null;
@@ -373,7 +373,7 @@ namespace MediaBrowser.Server.Implementations.Dto
{
return _imageProcessor.GetImageCacheTag(item, image);
}
catch (IOException ex)
catch (Exception ex)
{
_logger.ErrorException("Error getting {0} image info for {1}", ex, image.Type, image.Path);
return null;