From 52fb8dc1c37140ac372d0c9e45607f1dc629a0fb Mon Sep 17 00:00:00 2001 From: Bart274 Date: Fri, 10 Jan 2020 10:31:08 +0100 Subject: [PATCH] add download info to Snatched notification for Telegram --- mylar/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mylar/search.py b/mylar/search.py index 940005b4..427a3087 100755 --- a/mylar/search.py +++ b/mylar/search.py @@ -2751,7 +2751,7 @@ def notify_snatch(sent_to, comicname, comyear, IssueNumber, nzbprov, pack): if mylar.CONFIG.TELEGRAM_ENABLED and mylar.CONFIG.TELEGRAM_ONSNATCH: logger.info(u"Sending Telegram notification") telegram = notifiers.TELEGRAM() - telegram.notify(snline + " - " + snatched_name) + telegram.notify(snline + "%s - %s - Mylar %s" % (snline, snatched_name, sent_to)) if mylar.CONFIG.SLACK_ENABLED and mylar.CONFIG.SLACK_ONSNATCH: logger.info(u"Sending Slack notification") slack = notifiers.SLACK()