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

15 lines
271 B

namespace MediaBrowser.Model.Notifications
{
public class NotificationQuery
{
public string UserId { get; set; }
public bool? IsRead { get; set; }
public int? StartIndex { get; set; }
public int? Limit { get; set; }
}
}