Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/f1d965c655781bc26b4ee84ef8c9b56fd7061e2f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
6 additions and
6 deletions
@ -479,17 +479,17 @@ namespace MediaBrowser.Dlna.PlayTo
_successiveStopCount + + ;
_connectFailureCount + + ;
if ( _successiveStopCount > = maxSuccessiveStopReturns )
{
RestartTimerInactive ( ) ;
}
if ( _connectFailureCount > = maxSuccessiveStopReturns )
if ( _connectFailureCount > = 3 )
{
if ( OnDeviceUnavailable ! = null )
{
OnDeviceUnavailable ( ) ;
}
}
if ( _successiveStopCount > = maxSuccessiveStopReturns )
{
RestartTimerInactive ( ) ;
}
}
catch ( Exception ex )
{
@ -99,11 +99,11 @@ namespace MediaBrowser.Dlna.PlayTo
public void Init ( Device device )
{
_device = device ;
_device . OnDeviceUnavailable = OnDeviceUnavailable ;
_device . PlaybackStart + = _device_PlaybackStart ;
_device . PlaybackProgress + = _device_PlaybackProgress ;
_device . PlaybackStopped + = _device_PlaybackStopped ;
_device . MediaChanged + = _device_MediaChanged ;
_device . OnDeviceUnavailable = OnDeviceUnavailable ;
_device . Start ( ) ;