diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2026-06-03 19:47:35 +0200 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2026-06-03 19:47:35 +0200 |
| commit | 1b80da0c3d4014b5e65815f4e71b20d6714dd029 (patch) | |
| tree | f04c606c3df04d561661cb90ff8ef044a466226e /Emby.Server.Implementations | |
| parent | 47f2b3b6d07d2ebb0d978925265d56cb8b52a9d5 (diff) | |
Do not set topParentId if OwnerIds are empty
Diffstat (limited to 'Emby.Server.Implementations')
| -rw-r--r-- | Emby.Server.Implementations/Library/LibraryManager.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Library/LibraryManager.cs b/Emby.Server.Implementations/Library/LibraryManager.cs index a826db090f..ffc449d974 100644 --- a/Emby.Server.Implementations/Library/LibraryManager.cs +++ b/Emby.Server.Implementations/Library/LibraryManager.cs @@ -1987,7 +1987,8 @@ namespace Emby.Server.Implementations.Library query.TopParentIds.Length == 0 && string.IsNullOrEmpty(query.AncestorWithPresentationUniqueKey) && string.IsNullOrEmpty(query.SeriesPresentationUniqueKey) && - query.ItemIds.Length == 0) + query.ItemIds.Length == 0 && + query.OwnerIds.Length == 0) { var userViews = UserViewManager.GetUserViews(new UserViewQuery { |
