Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/211d1af395426dfa133dbea87d7572d6bb87c9b1
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
2 deletions
@ -31,6 +31,7 @@ namespace MediaBrowser.Model.LiveTv
public string Type { get ; set ; }
public string DeviceId { get ; set ; }
public bool ImportFavoritesOnly { get ; set ; }
public bool AllowHWTranscoding { get ; set ; }
public bool IsEnabled { get ; set ; }
public string M3UUrl { get ; set ; }
public string InfoUrl { get ; set ; }
@ -47,6 +48,7 @@ namespace MediaBrowser.Model.LiveTv
public TunerHostInfo ( )
{
IsEnabled = true ;
AllowHWTranscoding = true ;
}
}
@ -70,4 +72,4 @@ namespace MediaBrowser.Model.LiveTv
EnableAllTuners = true ;
}
}
}
}
@ -389,7 +389,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv.TunerHosts.HdHomerun
string model = await GetModelInfo ( info , cancellationToken ) . ConfigureAwait ( false ) ;
model = model ? ? string . Empty ;
if ( model. IndexOf ( "hdtc" , StringComparison . OrdinalIgnoreCase ) ! = - 1 )
if ( info. AllowHWTranscoding & & ( model. IndexOf ( "hdtc" , StringComparison . OrdinalIgnoreCase ) ! = - 1 ) )
{
list . Add ( await GetMediaSource ( info , hdhrId , "heavy" ) . ConfigureAwait ( false ) ) ;