aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-08-05 17:18:57 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-08-05 17:18:57 -0400
commit18131d2cbc92dddae26383b7e9a6f175783335eb (patch)
treec44e40cf08909f516d35df244f60d39ee05502d4 /MediaBrowser.Server.Implementations
parent19ce8a9e1a191b021954f076f9782372f5698603 (diff)
Tweaked save local decision making
Diffstat (limited to 'MediaBrowser.Server.Implementations')
-rw-r--r--MediaBrowser.Server.Implementations/Providers/ImageSaver.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Providers/ImageSaver.cs b/MediaBrowser.Server.Implementations/Providers/ImageSaver.cs
index 3e5a2802c..5da274ab9 100644
--- a/MediaBrowser.Server.Implementations/Providers/ImageSaver.cs
+++ b/MediaBrowser.Server.Implementations/Providers/ImageSaver.cs
@@ -87,7 +87,7 @@ namespace MediaBrowser.Server.Implementations.Providers
}
}
- if (item.LocationType != LocationType.FileSystem)
+ if (item.LocationType == LocationType.Remote || item.LocationType == LocationType.Virtual)
{
saveLocally = false;
}