Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/555e62fd177b02cabfdb7217dacfdd2355c089cd
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
27 additions and
15 deletions
@ -24,28 +24,40 @@ namespace NzbDrone.Core.Providers
{
get
{
lock ( _lock )
{
var activeNotification =
_progressNotification . Values . Where ( p = > p . Status = = ProgressNotificationStatus . InProgress ) .
ToList ( ) ;
var activeNotification = _progressNotification . Values . Where ( p = > p . Status = = ProgressNotificationStatus . InProgress ) . ToList ( ) ;
if ( activeNotification . Count = = 0 )
{
//Get notifications that were recently done
activeNotification =
_progressNotification . Values . Where ( p = > p . CompletedTime > = DateTime . Now . AddSeconds ( - 3 ) ) .
OrderByDescending ( c = > c . CompletedTime ) . ToList ( ) ;
if ( activeNotification . Count = = 0 )
{
//Get notifications that were recently done
activeNotification = _progressNotification . Values . Where ( p = > p . CompletedTime > = DateTime . Now . AddSeconds ( - 3 ) ) . OrderByDescending ( c = > c . CompletedTime ) . ToList ( ) ;
}
return activeNotification . ToList ( ) ;
}
return activeNotification . ToList ( ) ;
}
}
public virtual void Register ( ProgressNotification notification )
{
_progressNotification . Add ( notification . Id , notification ) ;
lock ( _lock )
{
_progressNotification . Add ( notification . Id , notification ) ;
}
}
public virtual void Register ( BasicNotification notification )
{
_basicNotifications . Add ( notification . Id , notification ) ;
lock ( _lock )
{
_basicNotifications . Add ( notification . Id , notification ) ;
}
}
public virtual void Dismiss ( Guid notificationId )
@ -52,13 +52,11 @@ namespace NzbDrone.Web.Controllers
[HttpGet]
public JsonResult Comet ( string message )
{
var requestTimer = Stopwatch . StartNew ( ) ;
MiniProfiler . Stop ( true ) ;
var currentMessage = GetCurrentMessage ( ) ;
while ( message = = currentMessage & & requestTimer . Elapsed . TotalSeconds < 10 )
while ( message = = currentMessage )
{
Thread . Sleep ( 250 ) ;
currentMessage = GetCurrentMessage ( ) ;
@ -41,9 +41,11 @@
}
function closeMsg ( ) {
//hide the message
$ ( '#msgBox' ) . hide ( "slide" , { direction : "right" } , speed ) ;
isShown = false ;
//hide the message
if ( isShown ) {
$ ( '#msgBox' ) . hide ( "slide" , { direction : "right" } , speed ) ;
isShown = false ;
}
}
} ) ;