Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/ea374c01b1843e1ae9e973ada91e16d1a14fe438
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
16 additions and
3 deletions
@ -64,7 +64,7 @@ namespace MediaBrowser.Controller.LiveTv
/// </summary>
/// <value><c>true</c> if this instance can reset; otherwise, <c>false</c>.</value>
public bool CanReset { get ; set ; }
public LiveTvTunerInfo ( )
{
Clients = new List < string > ( ) ;
@ -32,6 +32,8 @@ namespace MediaBrowser.Model.LiveTv
public bool ImportFavoritesOnly { get ; set ; }
public bool IsEnabled { get ; set ; }
public int DataVersion { get ; set ; }
public TunerHostInfo ( )
{
IsEnabled = true ;
@ -87,7 +87,6 @@ namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
_timerProvider . RestartTimers ( ) ;
SystemEvents . PowerModeChanged + = SystemEvents_PowerModeChanged ;
}
void SystemEvents_PowerModeChanged ( object sender , PowerModeChangedEventArgs e )
@ -48,6 +48,18 @@ namespace MediaBrowser.Server.Implementations.LiveTv.TunerHosts.HdHomerun
private const string ChannelIdPrefix = "hdhr_" ;
private string GetChannelId ( TunerHostInfo info , Channels i )
{
var id = ChannelIdPrefix + i . GuideNumber . ToString ( CultureInfo . InvariantCulture ) ;
if ( info . DataVersion > = 1 )
{
id + = '_' + ( i . GuideName ? ? string . Empty ) . GetMD5 ( ) . ToString ( "N" ) ;
}
return id ;
}
protected override async Task < IEnumerable < ChannelInfo > > GetChannelsInternal ( TunerHostInfo info , CancellationToken cancellationToken )
{
var options = new HttpRequestOptions
@ -65,7 +77,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv.TunerHosts.HdHomerun
{
Name = i . GuideName ,
Number = i . GuideNumber . ToString ( CultureInfo . InvariantCulture ) ,
Id = ChannelIdPrefix + i . GuideNumber . ToString ( CultureInfo . InvariantCulture ) + '_' + ( i . GuideName ? ? string . Empty ) . GetMD5 ( ) . ToString ( "N" ) ,
Id = GetChannelId( info , i ) ,
IsFavorite = i . Favorite ,
TunerHostId = info . Id