Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/d6d1bbe3f555568a75a597be3b65f12e98d83f9e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
5 additions and
5 deletions
@ -50,7 +50,7 @@ namespace NzbDrone.Core.Test.ProviderTests.NotificationProviderTests
_notificationProvider . Register ( fakeNotification ) ;
fakeNotification . Dispose ( ) ;
Thread . Sleep ( 4 000) ;
Thread . Sleep ( 7 000) ;
_notificationProvider . GetCurrent ( ) . Should ( ) . BeNull ( ) ;
}
@ -11,7 +11,7 @@ namespace NzbDrone.Core.Providers
public virtual ProgressNotification GetCurrent ( )
{
if ( _currentNotification = = null | | _currentNotification . CompletedTime < DateTime . Now . AddSeconds ( - 3 ) )
if ( _currentNotification = = null | | _currentNotification . CompletedTime < DateTime . Now . AddSeconds ( - 6 ) )
{
return null ;
}
@ -1,7 +1,6 @@
using System ;
using System.Diagnostics ;
using System.Threading ;
using System.Threading ;
using System.Web.Mvc ;
using System.Web.UI ;
using MvcMiniProfiler ;
using NzbDrone.Core.Providers ;
@ -20,6 +19,7 @@ namespace NzbDrone.Web.Controllers
}
[HttpGet]
[OutputCache(NoStore = true, Location = OutputCacheLocation.None)]
public JsonResult Comet ( string message )
{
MiniProfiler . Stop ( true ) ;