aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations/Users/DisplayPreferencesManager.cs
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2021-04-11 16:31:26 -0400
committerGitHub <noreply@github.com>2021-04-11 16:31:26 -0400
commit69f30bc52cf013a6d421287e13789a8b78d9c487 (patch)
treea9e0ef5dee09c44b973be204359a2cebca47dc47 /Jellyfin.Server.Implementations/Users/DisplayPreferencesManager.cs
parente8a359f97bf14c484073c6c86843df07475d4e1c (diff)
parent3b605b6280994d9309a56a07d6038d81c87551f4 (diff)
Merge pull request #5782 from cvium/fix-release-10.7.2v10.7.2
Fix 10.7.2 nullable
Diffstat (limited to 'Jellyfin.Server.Implementations/Users/DisplayPreferencesManager.cs')
-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 a9f7092aa..cac7b7b37 100644
--- a/Jellyfin.Server.Implementations/Users/DisplayPreferencesManager.cs
+++ b/Jellyfin.Server.Implementations/Users/DisplayPreferencesManager.cs
@@ -67,7 +67,7 @@ namespace Jellyfin.Server.Implementations.Users
}
/// <inheritdoc />
- public Dictionary<string, string?> ListCustomItemDisplayPreferences(Guid userId, Guid itemId, string client)
+ public Dictionary<string, string> ListCustomItemDisplayPreferences(Guid userId, Guid itemId, string client)
{
return _dbContext.CustomItemDisplayPreferences
.AsQueryable()