mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-14 03:30:25 +01:00
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:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user