aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations/Users
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2021-04-08 13:15:02 +0200
committerGitHub <noreply@github.com>2021-04-08 13:15:02 +0200
commit47bbe4c1466da4959f8eeb01f75565e1e8791e18 (patch)
tree37cd1d9e21317ac242692c835aa8da7076882286 /Jellyfin.Server.Implementations/Users
parent14f94b67934efd7af9efa0a09ffb83f86091d416 (diff)
parent4892e0cf064a2a392881b38a5965324aa80eac0c (diff)
Merge pull request #5717 from cvium/nullable-custompref-value
Diffstat (limited to 'Jellyfin.Server.Implementations/Users')
-rw-r--r--Jellyfin.Server.Implementations/Users/DisplayPreferencesManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server.Implementations/Users/DisplayPreferencesManager.cs b/Jellyfin.Server.Implementations/Users/DisplayPreferencesManager.cs
index a3e9516b9f..c89e3c74d5 100644
--- a/Jellyfin.Server.Implementations/Users/DisplayPreferencesManager.cs
+++ b/Jellyfin.Server.Implementations/Users/DisplayPreferencesManager.cs
@@ -68,7 +68,7 @@ namespace Jellyfin.Server.Implementations.Users
}
/// <inheritdoc />
- public IDictionary<string, string> ListCustomItemDisplayPreferences(Guid userId, Guid itemId, string client)
+ public Dictionary<string, string?> ListCustomItemDisplayPreferences(Guid userId, Guid itemId, string client)
{
return _dbContext.CustomItemDisplayPreferences
.AsQueryable()