diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2020-10-04 13:25:07 -0400 |
|---|---|---|
| committer | Joshua M. Boniface <joshua@boniface.me> | 2020-10-04 13:25:07 -0400 |
| commit | a9e5f6e770edec9c768bf9365fbb2dac26f0b7c1 (patch) | |
| tree | d4ca85c2bb5afeeb0a4fbca8f302f5afbe9e8ab7 | |
| parent | 2577595bac615fc74c8d4b21bd0ce925a1b21b7b (diff) | |
Remove nullable from MaxActiveSessions
| -rw-r--r-- | Jellyfin.Data/Entities/User.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Data/Entities/User.cs b/Jellyfin.Data/Entities/User.cs index daa4de0b5..6d4681914 100644 --- a/Jellyfin.Data/Entities/User.cs +++ b/Jellyfin.Data/Entities/User.cs @@ -191,7 +191,7 @@ namespace Jellyfin.Data.Entities /// <summary> /// Gets or sets the maximum number of active sessions the user can have at once. /// </summary> - public int? MaxActiveSessions { get; set; } + public int MaxActiveSessions { get; set; } /// <summary> /// Gets or sets the subtitle mode. |
