mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-26 10:36:57 +01:00
make custompref value nullable
This commit is contained in:
@@ -17,7 +17,7 @@ namespace Jellyfin.Data.Entities
|
||||
/// <param name="client">The client.</param>
|
||||
/// <param name="key">The preference key.</param>
|
||||
/// <param name="value">The preference value.</param>
|
||||
public CustomItemDisplayPreferences(Guid userId, Guid itemId, string client, string key, string value)
|
||||
public CustomItemDisplayPreferences(Guid userId, Guid itemId, string client, string key, string? value)
|
||||
{
|
||||
UserId = userId;
|
||||
ItemId = itemId;
|
||||
@@ -75,6 +75,6 @@ namespace Jellyfin.Data.Entities
|
||||
/// <remarks>
|
||||
/// Required.
|
||||
/// </remarks>
|
||||
public string Value { get; set; }
|
||||
public string? Value { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user