mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-05 07:18:47 +01:00
switch to ExcludeArtistIds
This commit is contained in:
@@ -368,10 +368,10 @@ namespace MediaBrowser.Api.UserLibrary
|
||||
query.ArtistNames = request.Artists.Split('|');
|
||||
}
|
||||
|
||||
// ExcludeArtistNames
|
||||
if (!string.IsNullOrEmpty(request.ExcludeArtistNames))
|
||||
// ExcludeArtistIds
|
||||
if (!string.IsNullOrEmpty(request.ExcludeArtistIds))
|
||||
{
|
||||
query.ExcludeArtistNames = request.ExcludeArtistNames.Split('|');
|
||||
query.ExcludeArtistIds = request.ExcludeArtistIds.Split('|');
|
||||
}
|
||||
|
||||
// Albums
|
||||
|
||||
Reference in New Issue
Block a user