Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/a9e5f6e770edec9c768bf9365fbb2dac26f0b7c1 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Remove nullable from MaxActiveSessions

pull/4269/head
Joshua M. Boniface 5 years ago
parent 2577595bac
commit a9e5f6e770

@ -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.

Loading…
Cancel
Save