Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/c6da09484395748c3fe876ad785e69790c926e71?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
7 additions and
1 deletions
@ -50,12 +50,14 @@ namespace MediaBrowser.Model.Configuration
public bool RememberAudioSelections { get ; set ; }
public bool RememberAudioSelections { get ; set ; }
public bool RememberSubtitleSelections { get ; set ; }
public bool RememberSubtitleSelections { get ; set ; }
public bool EnableEpisodeAutoQueue { get ; set ; }
/// <summary>
/// <summary>
/// Initializes a new instance of the <see cref="UserConfiguration" /> class.
/// Initializes a new instance of the <see cref="UserConfiguration" /> class.
/// </summary>
/// </summary>
public UserConfiguration ( )
public UserConfiguration ( )
{
{
EnableEpisodeAutoQueue = true ;
RememberAudioSelections = true ;
RememberAudioSelections = true ;
RememberSubtitleSelections = true ;
RememberSubtitleSelections = true ;
@ -771,6 +771,8 @@ namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
recordPath = Path . ChangeExtension ( recordPath , ".mp4" ) ;
recordPath = Path . ChangeExtension ( recordPath , ".mp4" ) ;
}
}
_libraryMonitor . ReportFileSystemChangeBeginning ( recordPath ) ;
recording . Path = recordPath ;
recording . Path = recordPath ;
recording . Status = RecordingStatus . InProgress ;
recording . Status = RecordingStatus . InProgress ;
recording . DateLastUpdated = DateTime . UtcNow ;
recording . DateLastUpdated = DateTime . UtcNow ;
@ -801,6 +803,8 @@ namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
{
{
result . Item2 . Release ( ) ;
result . Item2 . Release ( ) ;
}
}
_libraryMonitor . ReportFileSystemChangeComplete ( recordPath , false ) ;
}
}
}
}
catch ( OperationCanceledException )
catch ( OperationCanceledException )