This commit is contained in:
Shane Powell 2025-06-04 09:21:35 +12:00 committed by GitHub
parent 48825f468e
commit 08b2ffeaab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -924,6 +924,11 @@ namespace MediaBrowser.Controller.Entities
}
}
if (query.ExcludeItemIds.Contains(item.Id))
{
return false;
}
return true;
}