mirror of
https://github.com/Sonarr/Sonarr
synced 2026-05-08 13:01:10 +02:00
Revert "Handle events asynchronously for notifications"
This reverts commit 46da657740.
This commit is contained in:
parent
46da657740
commit
7da695bd62
1 changed files with 12 additions and 12 deletions
|
|
@ -15,12 +15,12 @@
|
|||
namespace NzbDrone.Core.Notifications
|
||||
{
|
||||
public class NotificationService
|
||||
: IHandleAsync<EpisodeGrabbedEvent>,
|
||||
IHandleAsync<EpisodeImportedEvent>,
|
||||
IHandleAsync<SeriesRenamedEvent>,
|
||||
IHandleAsync<SeriesDeletedEvent>,
|
||||
IHandleAsync<EpisodeFileDeletedEvent>,
|
||||
IHandleAsync<HealthCheckFailedEvent>,
|
||||
: IHandle<EpisodeGrabbedEvent>,
|
||||
IHandle<EpisodeImportedEvent>,
|
||||
IHandle<SeriesRenamedEvent>,
|
||||
IHandle<SeriesDeletedEvent>,
|
||||
IHandle<EpisodeFileDeletedEvent>,
|
||||
IHandle<HealthCheckFailedEvent>,
|
||||
IHandleAsync<DeleteCompletedEvent>,
|
||||
IHandleAsync<DownloadsProcessedEvent>,
|
||||
IHandleAsync<RenameCompletedEvent>,
|
||||
|
|
@ -109,7 +109,7 @@ private bool ShouldHandleHealthFailure(HealthCheck.HealthCheck healthCheck, bool
|
|||
return false;
|
||||
}
|
||||
|
||||
public void HandleAsync(EpisodeGrabbedEvent message)
|
||||
public void Handle(EpisodeGrabbedEvent message)
|
||||
{
|
||||
var grabMessage = new GrabMessage
|
||||
{
|
||||
|
|
@ -136,7 +136,7 @@ public void HandleAsync(EpisodeGrabbedEvent message)
|
|||
}
|
||||
}
|
||||
|
||||
public void HandleAsync(EpisodeImportedEvent message)
|
||||
public void Handle(EpisodeImportedEvent message)
|
||||
{
|
||||
if (!message.NewDownload)
|
||||
{
|
||||
|
|
@ -174,7 +174,7 @@ public void HandleAsync(EpisodeImportedEvent message)
|
|||
}
|
||||
}
|
||||
|
||||
public void HandleAsync(SeriesRenamedEvent message)
|
||||
public void Handle(SeriesRenamedEvent message)
|
||||
{
|
||||
foreach (var notification in _notificationFactory.OnRenameEnabled())
|
||||
{
|
||||
|
|
@ -193,7 +193,7 @@ public void HandleAsync(SeriesRenamedEvent message)
|
|||
}
|
||||
}
|
||||
|
||||
public void HandleAsync(EpisodeFileDeletedEvent message)
|
||||
public void Handle(EpisodeFileDeletedEvent message)
|
||||
{
|
||||
if (message.EpisodeFile.Episodes.Value.Empty())
|
||||
{
|
||||
|
|
@ -227,7 +227,7 @@ public void HandleAsync(EpisodeFileDeletedEvent message)
|
|||
}
|
||||
}
|
||||
|
||||
public void HandleAsync(SeriesDeletedEvent message)
|
||||
public void Handle(SeriesDeletedEvent message)
|
||||
{
|
||||
var deleteMessage = new SeriesDeleteMessage(message.Series,message.DeleteFiles);
|
||||
|
||||
|
|
@ -247,7 +247,7 @@ public void HandleAsync(SeriesDeletedEvent message)
|
|||
}
|
||||
}
|
||||
|
||||
public void HandleAsync(HealthCheckFailedEvent message)
|
||||
public void Handle(HealthCheckFailedEvent message)
|
||||
{
|
||||
foreach (var notification in _notificationFactory.OnHealthIssueEnabled())
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue