mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-06 10:16:18 +00:00
#551 - Add manual image selection for movies
This commit is contained in:
@@ -69,11 +69,11 @@ namespace MediaBrowser.Server.Implementations.Providers
|
||||
throw new ArgumentNullException("mimeType");
|
||||
}
|
||||
|
||||
var saveLocally = _config.Configuration.SaveLocalMeta || item is IItemByName || item is User;
|
||||
var saveLocally = _config.Configuration.SaveLocalMeta && item.Parent != null && !(item is Audio);
|
||||
|
||||
if (item is Audio || item.Parent == null)
|
||||
if (item is IItemByName || item is User)
|
||||
{
|
||||
saveLocally = false;
|
||||
saveLocally = true;
|
||||
}
|
||||
|
||||
if (type != ImageType.Primary && item is Episode)
|
||||
|
||||
Reference in New Issue
Block a user