mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-22 14:13:40 -07:00
Made chat_id a string
This commit is contained in:
parent
ed56bd8305
commit
36d478107f
1 changed files with 2 additions and 2 deletions
|
@ -250,7 +250,7 @@ _CONFIG_DEFINITIONS = {
|
||||||
'REFRESH_USERS_ON_STARTUP': (int, 'Monitoring', 1),
|
'REFRESH_USERS_ON_STARTUP': (int, 'Monitoring', 1),
|
||||||
'TELEGRAM_BOT_TOKEN': (str, 'Telegram', ''),
|
'TELEGRAM_BOT_TOKEN': (str, 'Telegram', ''),
|
||||||
'TELEGRAM_ENABLED': (int, 'Telegram', 0),
|
'TELEGRAM_ENABLED': (int, 'Telegram', 0),
|
||||||
'TELEGRAM_CHAT_ID': (int, 'Telegram', 0),
|
'TELEGRAM_CHAT_ID': (str, 'Telegram', ''),
|
||||||
'TELEGRAM_ON_PLAY': (int, 'Telegram', 0),
|
'TELEGRAM_ON_PLAY': (int, 'Telegram', 0),
|
||||||
'TELEGRAM_ON_STOP': (int, 'Telegram', 0),
|
'TELEGRAM_ON_STOP': (int, 'Telegram', 0),
|
||||||
'TELEGRAM_ON_PAUSE': (int, 'Telegram', 0),
|
'TELEGRAM_ON_PAUSE': (int, 'Telegram', 0),
|
||||||
|
@ -409,4 +409,4 @@ class Config(object):
|
||||||
if self.VIDEO_LOGGING_ENABLE == 0:
|
if self.VIDEO_LOGGING_ENABLE == 0:
|
||||||
self.MOVIE_LOGGING_ENABLE = 0
|
self.MOVIE_LOGGING_ENABLE = 0
|
||||||
self.TV_LOGGING_ENABLE = 0
|
self.TV_LOGGING_ENABLE = 0
|
||||||
self.CONFIG_VERSION = '1'
|
self.CONFIG_VERSION = '1'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue