aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Library/LibraryManager.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2024-05-15 18:12:42 +0200
committerBond_009 <bond.009@outlook.com>2024-08-05 17:17:57 +0200
commit09f447751044f961446aab6b7d825a241398933d (patch)
treeb5f2bf1f8d6ccc27b4ef6b8525fd47c572f680e2 /Emby.Server.Implementations/Library/LibraryManager.cs
parentc680dbb53ecd5d4dc2a5efe00f9bd92761283228 (diff)
Replace UserId with User in UserViewQuery
Diffstat (limited to 'Emby.Server.Implementations/Library/LibraryManager.cs')
-rw-r--r--Emby.Server.Implementations/Library/LibraryManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Library/LibraryManager.cs b/Emby.Server.Implementations/Library/LibraryManager.cs
index cbded1ec6..6d71e99a1 100644
--- a/Emby.Server.Implementations/Library/LibraryManager.cs
+++ b/Emby.Server.Implementations/Library/LibraryManager.cs
@@ -1530,7 +1530,7 @@ namespace Emby.Server.Implementations.Library
{
var userViews = UserViewManager.GetUserViews(new UserViewQuery
{
- UserId = user.Id,
+ User = user,
IncludeHidden = true,
IncludeExternalContent = allowExternalContent
});