|
@@ -70,15 +70,6 @@ namespace MediaBrowser.Server.Implementations.Providers
|
|
throw new ArgumentNullException("mimeType");
|
|
throw new ArgumentNullException("mimeType");
|
|
}
|
|
}
|
|
|
|
|
|
- if (type == ImageType.Backdrop && imageIndex == null)
|
|
|
|
- {
|
|
|
|
- imageIndex = item.BackdropImagePaths.Count;
|
|
|
|
- }
|
|
|
|
- else if (type == ImageType.Screenshot && imageIndex == null)
|
|
|
|
- {
|
|
|
|
- imageIndex = item.ScreenshotImagePaths.Count;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
var saveLocally = _config.Configuration.SaveLocalMeta && item.Parent != null && !(item is Audio);
|
|
var saveLocally = _config.Configuration.SaveLocalMeta && item.Parent != null && !(item is Audio);
|
|
|
|
|
|
if (item is IItemByName || item is User)
|
|
if (item is IItemByName || item is User)
|
|
@@ -97,6 +88,15 @@ namespace MediaBrowser.Server.Implementations.Providers
|
|
saveLocally = false;
|
|
saveLocally = false;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ if (type == ImageType.Backdrop && imageIndex == null)
|
|
|
|
+ {
|
|
|
|
+ imageIndex = item.BackdropImagePaths.Count;
|
|
|
|
+ }
|
|
|
|
+ else if (type == ImageType.Screenshot && imageIndex == null)
|
|
|
|
+ {
|
|
|
|
+ imageIndex = item.ScreenshotImagePaths.Count;
|
|
|
|
+ }
|
|
|
|
+
|
|
var paths = GetSavePaths(item, type, imageIndex, mimeType, saveLocally);
|
|
var paths = GetSavePaths(item, type, imageIndex, mimeType, saveLocally);
|
|
|
|
|
|
// If there are more than one output paths, the stream will need to be seekable
|
|
// If there are more than one output paths, the stream will need to be seekable
|