Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/37a9f670dd74ea9eba3365223c6f68647015f9d1?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
7 changed files with
19 additions and
8 deletions
@ -20,5 +20,7 @@ namespace NzbDrone.Core.Books.Commands
public override bool SendUpdatesToClient = > true ;
public override bool SendUpdatesToClient = > true ;
public override bool UpdateScheduledTask = > ! AuthorId . HasValue ;
public override bool UpdateScheduledTask = > ! AuthorId . HasValue ;
public override string CompletionMessage = > "Completed" ;
}
}
}
}
@ -18,5 +18,7 @@ namespace NzbDrone.Core.Books.Commands
public override bool SendUpdatesToClient = > true ;
public override bool SendUpdatesToClient = > true ;
public override bool UpdateScheduledTask = > ! BookId . HasValue ;
public override bool UpdateScheduledTask = > ! BookId . HasValue ;
public override string CompletionMessage = > "Completed" ;
}
}
}
}
@ -134,7 +134,7 @@ namespace NzbDrone.Core.IndexerSearch
var reports = batch . SelectMany ( x = > x ) . ToList ( ) ;
var reports = batch . SelectMany ( x = > x ) . ToList ( ) ;
_logger . Debug( "Total of {0} reports were found for {1} from {2} indexers" , reports . Count , criteriaBase , indexers . Count ) ;
_logger . Progress Debug( "Total of {0} reports were found for {1} from {2} indexers" , reports . Count , criteriaBase , indexers . Count ) ;
// Update the last search time for all albums if at least 1 indexer was searched.
// Update the last search time for all albums if at least 1 indexer was searched.
if ( indexers . Any ( ) )
if ( indexers . Any ( ) )
@ -5,7 +5,6 @@ namespace NzbDrone.Core.Indexers
public class RssSyncCommand : Command
public class RssSyncCommand : Command
{
{
public override bool SendUpdatesToClient = > true ;
public override bool SendUpdatesToClient = > true ;
public override bool IsLongRunning = > true ;
public override bool IsLongRunning = > true ;
}
}
}
}
@ -23,7 +23,7 @@ namespace NzbDrone.Core.Messaging.Commands
}
}
public virtual bool UpdateScheduledTask = > true ;
public virtual bool UpdateScheduledTask = > true ;
public virtual string CompletionMessage = > "Completed" ;
public virtual string CompletionMessage = > null ;
public virtual bool RequiresDiskAccess = > false ;
public virtual bool RequiresDiskAccess = > false ;
public virtual bool IsExclusive = > false ;
public virtual bool IsExclusive = > false ;
public virtual bool IsTypeExclusive = > false ;
public virtual bool IsTypeExclusive = > false ;
@ -1,10 +1,13 @@
using System ;
using System ;
using System.Threading ;
using NzbDrone.Core.Messaging.Commands ;
using NzbDrone.Core.Messaging.Commands ;
namespace NzbDrone.Core.ProgressMessaging
namespace NzbDrone.Core.ProgressMessaging
{
{
public static class ProgressMessageContext
public static class ProgressMessageContext
{
{
private static AsyncLocal < CommandModel > _commandModelAsync = new AsyncLocal < CommandModel > ( ) ;
[ThreadStatic]
[ThreadStatic]
private static CommandModel _commandModel ;
private static CommandModel _commandModel ;
@ -13,8 +16,15 @@ namespace NzbDrone.Core.ProgressMessaging
public static CommandModel CommandModel
public static CommandModel CommandModel
{
{
get { return _commandModel ; }
get
set { _commandModel = value ; }
{
return _commandModel ? ? _commandModelAsync . Value ;
}
set
{
_commandModel = value ;
_commandModelAsync . Value = value ;
}
}
}
public static bool LockReentrancy ( )
public static bool LockReentrancy ( )
@ -6,7 +6,5 @@ namespace NzbDrone.Core.Update.Commands
{
{
public override bool SendUpdatesToClient = > true ;
public override bool SendUpdatesToClient = > true ;
public override bool IsExclusive = > true ;
public override bool IsExclusive = > true ;
public override string CompletionMessage = > null ;
}
}
}
}