Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/53a7ed94e1935cfb173e8fb4dd196eaa38371418
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
52 additions and
4 deletions
@ -14,7 +14,7 @@ namespace NzbDrone.Host.Owin.MiddleWare
{
SignalrDependencyResolver . Register ( container ) ;
GlobalHost . Configuration . DisconnectTimeout = TimeSpan . From Seconds( 300000 ) ;
GlobalHost . Configuration . DisconnectTimeout = TimeSpan . From Minutes( 3 ) ;
}
public void Attach ( IAppBuilder appBuilder )
@ -23,12 +23,13 @@ define(function () {
}
}
return window . Messenger ( ) . post ( {
return window . Messenger ( ) . post ( {
message : options . message ,
type : options . type ,
showCloseButton : true ,
hideAfter : options . hideAfter ,
id : options . id
id : options . id ,
actions : options . actions
} ) ;
} ,
@ -3,8 +3,9 @@ define(
[
'vent' ,
'jquery' ,
'Shared/Messenger' ,
'signalR'
] , function ( vent , $ ) {
] , function ( vent , $ , Messenger ) {
return {
appInitializer : function ( ) {
@ -25,6 +26,9 @@ define(
}
} ;
var tryingToReconnect = false ;
var messengerId = 'signalR' ;
this . signalRconnection = $ . connection ( '/signalr' ) ;
this . signalRconnection . stateChanged ( function ( change ) {
@ -35,6 +39,49 @@ define(
vent . trigger ( 'server:' + message . name , message . body ) ;
} ) ;
this . signalRconnection . reconnecting ( function ( ) {
tryingToReconnect = true ;
Messenger . show ( {
id : messengerId ,
type : 'info' ,
hideAfter : 0 ,
message : 'Connection to backend lost, attempting to reconnect'
} ) ;
} ) ;
this . signalRconnection . reconnected ( function ( ) {
tryingToReconnect = false ;
Messenger . show ( {
id : messengerId ,
type : 'success' ,
hideAfter : 5 ,
message : 'Connection to backend restored'
} ) ;
} ) ;
this . signalRconnection . disconnected ( function ( ) {
if ( tryingToReconnect ) {
$ ( '<div class="modal-backdrop"></div>' ) . appendTo ( document . body ) ;
Messenger . show ( {
id : messengerId ,
type : 'error' ,
hideAfter : 0 ,
message : 'Connection to backend lost' ,
actions : {
cancel : {
label : 'Reload' ,
action : function ( ) {
window . location . reload ( ) ;
}
}
}
} ) ;
}
} ) ;
this . signalRconnection . start ( { transport :
[
'longPolling'