Merge pull request #5717 from cvium/nullable-custompref-value

(cherry picked from commit 47bbe4c146)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
Bond-009
2021-04-08 13:15:02 +02:00
committed by Joshua M. Boniface
parent 6ece01d425
commit 3c64bcffe3
6 changed files with 563 additions and 10 deletions

View File

@@ -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()