From 6cbfacaeaeddd91d5dc98dd555c8ec60c22d8832 Mon Sep 17 00:00:00 2001 From: Devin Buhl Date: Sat, 31 Oct 2015 01:59:13 -0400 Subject: [PATCH] added event / suject to notifcation text --- plexpy/notifiers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/notifiers.py b/plexpy/notifiers.py index 82dc281c..0ef56425 100644 --- a/plexpy/notifiers.py +++ b/plexpy/notifiers.py @@ -1455,7 +1455,7 @@ class TELEGRAM(object): http_handler = HTTPSConnection("api.telegram.org") data = {'chat_id': self.chat_id, - 'text': message.encode("utf-8")} + 'text': event + ': ' + message.encode("utf-8")} http_handler.request("POST", "/bot%s/%s" % (self.bot_token, "sendMessage"),