Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/201833d0076cf269e8ea66a7d38125ef563b369f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
3 deletions
@ -42,7 +42,7 @@ namespace MediaBrowser.Api.Playback
var options = GetOptions ( ) ;
if ( options . EnableThrottling & & IsThrottleAllowed ( _job , options . Throttle Threshold Seconds) )
if ( options . EnableThrottling & & IsThrottleAllowed ( _job , options . Throttle Delay Seconds) )
{
PauseTranscoding ( ) ;
}
@ -8,14 +8,14 @@ namespace MediaBrowser.Model.Configuration
public double DownMixAudioBoost { get ; set ; }
public bool EnableDebugLogging { get ; set ; }
public bool EnableThrottling { get ; set ; }
public int Throttle Threshold Seconds { get ; set ; }
public int Throttle Delay Seconds { get ; set ; }
public string HardwareAccelerationType { get ; set ; }
public EncodingOptions ( )
{
DownMixAudioBoost = 2 ;
EnableThrottling = true ;
Throttle ThresholdSeconds = 11 0;
Throttle DelaySeconds = 18 0;
EncodingThreadCount = - 1 ;
}
}