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/78638c72fb2fd15e7c9277bb37f5a6a93b9cc0a9/MediaBrowser.Model/LiveTv/RecordingStatus.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/LiveTv/RecordingStatus.cs

16 lines
248 B

#pragma warning disable CS1591
namespace MediaBrowser.Model.LiveTv
{
public enum RecordingStatus
{
New,
InProgress,
Completed,
Cancelled,
ConflictedOk,
ConflictedNotOk,
Error
}
}