Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/6da57c86cd0b0955b5fc9a4426762cc83328eeff
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
3 deletions
@ -778,7 +778,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
try
{
// HDHR doesn't seem to release the tuner right away after first probing with ffmpeg
await Task . Delay ( 3000 , cancellationToken ) . ConfigureAwait ( false ) ;
//await Task.Delay(3000, cancellationToken).ConfigureAwait(false) ;
var duration = recordingEndDate - DateTime . UtcNow ;
@ -88,11 +88,11 @@ namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
// MUST read both stdout and stderr asynchronously or a deadlock may occurr
process . BeginOutputReadLine ( ) ;
onStarted ( ) ;
// Important - don't await the log task or we won't be able to kill ffmpeg when the user stops playback
StartStreamingLog ( process . StandardError . BaseStream , _logFileStream ) ;
onStarted ( ) ;
// Wait for the file to exist before proceeeding
while ( ! _hasExited )
{