diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-04-08 13:15:02 +0200 |
|---|---|---|
| committer | Joshua M. Boniface <joshua@boniface.me> | 2021-04-11 14:13:44 -0400 |
| commit | 3c64bcffe39e99fbfb0acbefc90ace51d71dfc18 (patch) | |
| tree | 032600a17732debc0a56ddc69a8082ab79b90a10 /Jellyfin.Server.Implementations/Users/DisplayPreferencesManager.cs | |
| parent | 6ece01d425da52723469ffe4235f9c7acd4eba51 (diff) | |
Merge pull request #5717 from cvium/nullable-custompref-value
(cherry picked from commit 47bbe4c1466da4959f8eeb01f75565e1e8791e18)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
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 c8a589cab..a9f7092aa 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 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() |
