diff options
| author | Mark Cilia Vincenti <markciliavincenti@gmail.com> | 2024-01-27 21:31:12 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-27 21:31:12 +0100 |
| commit | 3fa86a45595c604a0211ba9ffbc4c7f78f9de881 (patch) | |
| tree | 006a774c8d2464b53f3f6efc26c9549e4ab7d5ce /MediaBrowser.Controller/Entities/UserView.cs | |
| parent | 179965e7749794513be0b832e9d8fb31444e9779 (diff) | |
| parent | 054f42332d8e0c45fb899eeaef982aa0fd549397 (diff) | |
Merge branch 'jellyfin:master' into AsyncKeyedLock-migration
Diffstat (limited to 'MediaBrowser.Controller/Entities/UserView.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/UserView.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/MediaBrowser.Controller/Entities/UserView.cs b/MediaBrowser.Controller/Entities/UserView.cs index eb026deb4..c93488a85 100644 --- a/MediaBrowser.Controller/Entities/UserView.cs +++ b/MediaBrowser.Controller/Entities/UserView.cs @@ -70,11 +70,11 @@ namespace MediaBrowser.Controller.Entities /// <inheritdoc /> public override IEnumerable<Guid> GetIdsForAncestorQuery() { - if (!DisplayParentId.Equals(default)) + if (!DisplayParentId.IsEmpty()) { yield return DisplayParentId; } - else if (!ParentId.Equals(default)) + else if (!ParentId.IsEmpty()) { yield return ParentId; } @@ -95,11 +95,11 @@ namespace MediaBrowser.Controller.Entities { var parent = this as Folder; - if (!DisplayParentId.Equals(default)) + if (!DisplayParentId.IsEmpty()) { parent = LibraryManager.GetItemById(DisplayParentId) as Folder ?? parent; } - else if (!ParentId.Equals(default)) + else if (!ParentId.IsEmpty()) { parent = LibraryManager.GetItemById(ParentId) as Folder ?? parent; } |
