mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
save thumbs as landscape in compatible mode
This commit is contained in:
parent
44c0eba39d
commit
809ed093e8
@ -486,7 +486,7 @@ namespace MediaBrowser.Server.Implementations.Providers
|
|||||||
{
|
{
|
||||||
return new[] { GetSavePathForItemInMixedFolder(item, type, "fanart" + outputIndex.ToString(UsCulture), extension) };
|
return new[] { GetSavePathForItemInMixedFolder(item, type, "fanart" + outputIndex.ToString(UsCulture), extension) };
|
||||||
}
|
}
|
||||||
|
|
||||||
var extraFanartFilename = GetBackdropSaveFilename(item.BackdropImagePaths, "fanart", "fanart", outputIndex);
|
var extraFanartFilename = GetBackdropSaveFilename(item.BackdropImagePaths, "fanart", "fanart", outputIndex);
|
||||||
|
|
||||||
return new[]
|
return new[]
|
||||||
@ -563,6 +563,13 @@ namespace MediaBrowser.Server.Implementations.Providers
|
|||||||
|
|
||||||
return new[] { Path.Combine(seriesFolder, imageFilename) };
|
return new[] { Path.Combine(seriesFolder, imageFilename) };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (item.IsInMixedFolder)
|
||||||
|
{
|
||||||
|
return new[] { GetSavePathForItemInMixedFolder(item, type, "landscape", extension) };
|
||||||
|
}
|
||||||
|
|
||||||
|
return new[] { Path.Combine(item.MetaLocation, "landscape" + extension) };
|
||||||
}
|
}
|
||||||
|
|
||||||
// All other paths are the same
|
// All other paths are the same
|
||||||
|
Loading…
x
Reference in New Issue
Block a user