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/140673fcf6186c559c97829a14991f7f81d22430/MediaBrowser.Controller/LiveTv/RecordingStatusChangedEventArgs.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/LiveTv/RecordingStatusChangedEvent...

13 lines
270 B

using System;
using MediaBrowser.Model.LiveTv;
6 years ago
namespace MediaBrowser.Controller.LiveTv
{
public class RecordingStatusChangedEventArgs : EventArgs
{
public string RecordingId { get; set; }
public RecordingStatus NewStatus { get; set; }
}
}