Skip to content

Commit

Permalink
New: Telegram Notification - Add Upgrade Movie Support
Browse files Browse the repository at this point in the history
  • Loading branch information
danimart1991 authored and Qstick committed May 15, 2021
1 parent db14ac4 commit a31ca4e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/NzbDrone.Core/Notifications/NotificationBase.cs
Expand Up @@ -12,6 +12,7 @@ public abstract class NotificationBase<TSettings> : INotification
{
protected const string MOVIE_GRABBED_TITLE = "Movie Grabbed";
protected const string MOVIE_DOWNLOADED_TITLE = "Movie Downloaded";
protected const string MOVIE_UPGRADED_TITLE = "Movie Upgraded";
protected const string MOVIE_DELETED_TITLE = "Movie Deleted";
protected const string MOVIE_FILE_DELETED_TITLE = "Movie File Deleted";
protected const string HEALTH_ISSUE_TITLE = "Health Check Failure";
Expand Down
10 changes: 9 additions & 1 deletion src/NzbDrone.Core/Notifications/Telegram/Telegram.cs
@@ -1,4 +1,5 @@
using System.Collections.Generic;
using System.Linq;
using FluentValidation.Results;
using NzbDrone.Common.Extensions;

Expand All @@ -23,7 +24,14 @@ public override void OnGrab(GrabMessage grabMessage)

public override void OnDownload(DownloadMessage message)
{
_proxy.SendNotification(MOVIE_DOWNLOADED_TITLE, message.Message, Settings);
if (message.OldMovieFiles.Any())
{
_proxy.SendNotification(MOVIE_UPGRADED_TITLE, message.Message, Settings);
}
else
{
_proxy.SendNotification(MOVIE_DOWNLOADED_TITLE, message.Message, Settings);
}
}

public override void OnMovieFileDelete(MovieFileDeleteMessage deleteMessage)
Expand Down

0 comments on commit a31ca4e

Please sign in to comment.