New: Telegram Notification - Add Upgrade Movie Support

pull/6327/head
Daniel Martin Gonzalez 3 years ago committed by Qstick
parent db14ac4605
commit a31ca4e80b

@ -12,6 +12,7 @@ namespace NzbDrone.Core.Notifications
{
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";

@ -1,4 +1,5 @@
using System.Collections.Generic;
using System.Linq;
using FluentValidation.Results;
using NzbDrone.Common.Extensions;
@ -22,9 +23,16 @@ namespace NzbDrone.Core.Notifications.Telegram
}
public override void OnDownload(DownloadMessage message)
{
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)
{

Loading…
Cancel
Save