Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/8b77a893734e195239553c633f976907eccd0a2c You should set ROOT_URL correctly, otherwise the web may not work correctly.

change people to prefer folder.jpg

release-10.1.0
Luke Pulverenti 8 years ago
parent c6aaebc232
commit 8b77a89373

@ -177,7 +177,7 @@ namespace MediaBrowser.LocalMetadata.Images
"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
names.Insert(0, "poster");

@ -151,6 +151,8 @@
/// </summary>
People,
PlayAccess,
/// <summary>
/// The production locations
/// </summary>

@ -410,6 +410,7 @@ namespace MediaBrowser.Providers.Manager
var folderName = item is MusicAlbum ||
item is MusicArtist ||
item is PhotoAlbum ||
item is Person ||
(saveLocally && _config.Configuration.ImageSavingConvention == ImageSavingConvention.Legacy) ?
"folder" :
"poster";

Loading…
Cancel
Save