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

18 lines
431 B

using MediaBrowser.Model.Notifications;
using System;
namespace MediaBrowser.Controller.Notifications
{
public class NotificationUpdateEventArgs : EventArgs
{
public Notification Notification { get; set; }
}
public class NotificationReadEventArgs : EventArgs
{
public string[] IdList { get; set; }
public string UserId { get; set; }
public bool IsRead { get; set; }
}
}