Merge pull request #17081 from Gadnief/fix/audiodb-album-description-en-fallback

Fix AudioDb album description not displayed for English (mirror of #16606)
This commit is contained in:
Bond-009
2026-06-13 21:52:23 +02:00
committed by GitHub

View File

@@ -142,7 +142,9 @@ namespace MediaBrowser.Providers.Plugins.AudioDb
if (string.IsNullOrWhiteSpace(overview))
{
overview = result.strDescriptionEN;
overview = string.IsNullOrWhiteSpace(result.strDescriptionEN)
? result.strDescription
: result.strDescriptionEN;
}
item.Overview = (overview ?? string.Empty).StripHtml();
@@ -240,6 +242,8 @@ namespace MediaBrowser.Providers.Plugins.AudioDb
public string strAlbumCDart { get; set; }
public string strDescription { get; set; }
public string strDescriptionEN { get; set; }
public string strDescriptionDE { get; set; }