diff options
| author | cvium <clausvium@gmail.com> | 2021-04-11 22:19:59 +0200 |
|---|---|---|
| committer | cvium <clausvium@gmail.com> | 2021-04-11 22:19:59 +0200 |
| commit | 3b605b6280994d9309a56a07d6038d81c87551f4 (patch) | |
| tree | a9e0ef5dee09c44b973be204359a2cebca47dc47 /Jellyfin.Server.Implementations/Users/DisplayPreferencesManager.cs | |
| parent | e8a359f97bf14c484073c6c86843df07475d4e1c (diff) | |
fix 10.7.2 nullable
Diffstat (limited to 'Jellyfin.Server.Implementations/Users/DisplayPreferencesManager.cs')
| -rw-r--r-- | Jellyfin.Server.Implementations/Users/DisplayPreferencesManager.cs | 2 |
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() |
