From 36d478107f47b3b71f2053a86ee6e91d3ba96f58 Mon Sep 17 00:00:00 2001 From: Devin Buhl Date: Sun, 29 Nov 2015 17:24:00 -0500 Subject: [PATCH] Made chat_id a string --- plexpy/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plexpy/config.py b/plexpy/config.py index 08054742..e772ffae 100644 --- a/plexpy/config.py +++ b/plexpy/config.py @@ -250,7 +250,7 @@ _CONFIG_DEFINITIONS = { 'REFRESH_USERS_ON_STARTUP': (int, 'Monitoring', 1), 'TELEGRAM_BOT_TOKEN': (str, 'Telegram', ''), 'TELEGRAM_ENABLED': (int, 'Telegram', 0), - 'TELEGRAM_CHAT_ID': (int, 'Telegram', 0), + 'TELEGRAM_CHAT_ID': (str, 'Telegram', ''), 'TELEGRAM_ON_PLAY': (int, 'Telegram', 0), 'TELEGRAM_ON_STOP': (int, 'Telegram', 0), 'TELEGRAM_ON_PAUSE': (int, 'Telegram', 0), @@ -409,4 +409,4 @@ class Config(object): if self.VIDEO_LOGGING_ENABLE == 0: self.MOVIE_LOGGING_ENABLE = 0 self.TV_LOGGING_ENABLE = 0 - self.CONFIG_VERSION = '1' \ No newline at end of file + self.CONFIG_VERSION = '1'