Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/1e7db2287e3729c3edd39101bf8f3aa29b1e5c04
You should set ROOT_URL correctly, otherwise the web may not work correctly.
6 changed files with
16 additions and
16 deletions
@ -20,17 +20,17 @@ namespace NzbDrone.Api.Commands
public void HandleAsync ( CommandStartedEvent message )
{
BroadcastMessage ( message . Command) ;
BroadcastMessage ( message . Tracked Command) ;
}
public void HandleAsync ( CommandCompletedEvent message )
{
BroadcastMessage ( message . Command) ;
BroadcastMessage ( message . Tracked Command) ;
}
public void Handle ( CommandFailedEvent message )
{
BroadcastMessage ( message . Command) ;
BroadcastMessage ( message . Tracked Command) ;
}
private void BroadcastMessage ( TrackedCommand trackedCommand )
@ -4,11 +4,11 @@ namespace NzbDrone.Common.Messaging.Events
{
public class CommandCompletedEvent : IEvent
{
public TrackedCommand Command { get ; private set ; }
public TrackedCommand Tracked Command { get ; private set ; }
public CommandCompletedEvent ( TrackedCommand command)
public CommandCompletedEvent ( TrackedCommand tra ckedC ommand)
{
Command = command;
Tracked Command = tra ckedC ommand;
}
}
}
@ -4,11 +4,11 @@ namespace NzbDrone.Common.Messaging.Events
{
public class CommandExecutedEvent : IEvent
{
public TrackedCommand Command { get ; private set ; }
public TrackedCommand Tracked Command { get ; private set ; }
public CommandExecutedEvent ( TrackedCommand command)
public CommandExecutedEvent ( TrackedCommand tra ckedC ommand)
{
Command = command;
Tracked Command = tra ckedC ommand;
}
}
}
@ -5,12 +5,12 @@ namespace NzbDrone.Common.Messaging.Events
{
public class CommandFailedEvent : IEvent
{
public TrackedCommand Command { get ; private set ; }
public TrackedCommand Tracked Command { get ; private set ; }
public Exception Exception { get ; private set ; }
public CommandFailedEvent ( TrackedCommand command, Exception exception )
public CommandFailedEvent ( TrackedCommand tra ckedC ommand, Exception exception )
{
Command = command;
Tracked Command = tra ckedC ommand;
Exception = exception ;
}
}
@ -4,11 +4,11 @@ namespace NzbDrone.Common.Messaging.Events
{
public class CommandStartedEvent : IEvent
{
public TrackedCommand Command { get ; private set ; }
public TrackedCommand Tracked Command { get ; private set ; }
public CommandStartedEvent ( TrackedCommand command)
public CommandStartedEvent ( TrackedCommand tra ckedC ommand)
{
Command = command;
Tracked Command = tra ckedC ommand;
}
}
}
@ -79,7 +79,7 @@ namespace NzbDrone.Core.Jobs
public void HandleAsync ( CommandExecutedEvent message )
{
var scheduledTask = _scheduledTaskRepository . All ( ) . SingleOrDefault ( c = > c . TypeName = = message . Command. GetType ( ) . FullName ) ;
var scheduledTask = _scheduledTaskRepository . All ( ) . SingleOrDefault ( c = > c . TypeName = = message . TrackedCommand. Command. GetType ( ) . FullName ) ;
if ( scheduledTask ! = null )
{