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/d173358065c65710476b225168bd8a348d99cf11/MediaBrowser.Controller/LiveTv/LiveTvConflictException.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
using System;
|
|
|
|
namespace MediaBrowser.Controller.LiveTv
|
|
{
|
|
/// <summary>
|
|
/// Class LiveTvConflictException.
|
|
/// </summary>
|
|
public class LiveTvConflictException : Exception
|
|
{
|
|
public LiveTvConflictException()
|
|
{
|
|
|
|
}
|
|
public LiveTvConflictException(string message)
|
|
: base(message)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|