mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-03 22:38:30 +01:00
added library settings page
This commit is contained in:
@@ -120,12 +120,7 @@ namespace MediaBrowser.Controller.Providers.Music
|
||||
var artist = searchResult.results.artistmatches.artist
|
||||
.FirstOrDefault(i => i.name != null && string.Compare(i.name, item.Name, CultureInfo.CurrentCulture, CompareOptions.IgnoreNonSpace | CompareOptions.IgnoreCase | CompareOptions.IgnoreSymbols) == 0);
|
||||
|
||||
if (artist == null)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
return artist.mbid;
|
||||
return artist == null ? null : artist.mbid;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user