aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Library
diff options
context:
space:
mode:
authorPaolo Antinori <pantinor@redhat.com>2026-07-25 12:50:32 +0200
committerPaolo Antinori <pantinor@redhat.com>2026-07-25 12:50:32 +0200
commit8b70582561754d22fababede84316beead46d3a9 (patch)
tree461af8a203e1032b06a67010e0d6040d7c573118 /Emby.Server.Implementations/Library
parent5d580abb08d9d23f54e74050fdaa8fcdbc21571f (diff)
Remove added comments (#17395 review)
Diffstat (limited to 'Emby.Server.Implementations/Library')
-rw-r--r--Emby.Server.Implementations/Library/LibraryManager.cs3
1 files changed, 0 insertions, 3 deletions
diff --git a/Emby.Server.Implementations/Library/LibraryManager.cs b/Emby.Server.Implementations/Library/LibraryManager.cs
index 8d67f0c6c7..1c2d314341 100644
--- a/Emby.Server.Implementations/Library/LibraryManager.cs
+++ b/Emby.Server.Implementations/Library/LibraryManager.cs
@@ -2315,9 +2315,6 @@ namespace Emby.Server.Implementations.Library
{
var comparer = Comparers.FirstOrDefault(c => name == c.Type);
- // User-dependent comparers (IUserBaseItemComparer) need a User. With no user
- // (anonymous/API-key /Items requests), a user-dependent sort key is a caller contract
- // violation — throw rather than silently falling back to a different key.
if (comparer is IUserBaseItemComparer)
{
if (user is null)