mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
change people to prefer folder.jpg
This commit is contained in:
parent
c6aaebc232
commit
8b77a89373
@ -177,7 +177,7 @@ namespace MediaBrowser.LocalMetadata.Images
|
|||||||
"default"
|
"default"
|
||||||
};
|
};
|
||||||
|
|
||||||
if (item is MusicAlbum || item is MusicArtist || item is PhotoAlbum)
|
if (item is MusicAlbum || item is MusicArtist || item is PhotoAlbum || item is Person)
|
||||||
{
|
{
|
||||||
// these prefer folder
|
// these prefer folder
|
||||||
names.Insert(0, "poster");
|
names.Insert(0, "poster");
|
||||||
|
@ -151,6 +151,8 @@
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
People,
|
People,
|
||||||
|
|
||||||
|
PlayAccess,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The production locations
|
/// The production locations
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -410,6 +410,7 @@ namespace MediaBrowser.Providers.Manager
|
|||||||
var folderName = item is MusicAlbum ||
|
var folderName = item is MusicAlbum ||
|
||||||
item is MusicArtist ||
|
item is MusicArtist ||
|
||||||
item is PhotoAlbum ||
|
item is PhotoAlbum ||
|
||||||
|
item is Person ||
|
||||||
(saveLocally && _config.Configuration.ImageSavingConvention == ImageSavingConvention.Legacy) ?
|
(saveLocally && _config.Configuration.ImageSavingConvention == ImageSavingConvention.Legacy) ?
|
||||||
"folder" :
|
"folder" :
|
||||||
"poster";
|
"poster";
|
||||||
|
Loading…
Reference in New Issue
Block a user