You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Should the telegram notifications be working currently with the latest master? I followed the instructions, running the bot in Docker, but not getting any telegram related logs or notifications.
To Reproduce
Steps to reproduce the behavior:
~> cat config.yml
...
TELEGRAM:
# set to True to enable telegram notifications
ENABLED: True
# Disable / Enable specific notifications
NOTIFICATIONS:
STARTUP: True
...
~>
cat auth.yml
telegram_token: "yxz"
telegram_chat_id: "123"
...
Expected behavior
Telegram notifications showing up / Log Entries in INFO or DEBUG mode
regards,
strowi
The text was updated successfully, but these errors were encountered:
Hi,
There is a bug in the file send_telegram.py.
Replace: requests.get( f"""https://api.telegram.org/bot{bot_token}/sendMessage ?chat_id={bot_chatID} &parse_mode=Markdown &text={record.message}""" )
By: url = f"""https://api.telegram.org/bot{bot_token}/sendMessage?chat_id={bot_chatID}&parse_mode=Markdown&text={record.message}""" requests.get(url)
Hi,
Describe the bug
Should the telegram notifications be working currently with the latest master? I followed the instructions, running the bot in Docker, but not getting any telegram related logs or notifications.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Telegram notifications showing up / Log Entries in INFO or DEBUG mode
regards,
strowi
The text was updated successfully, but these errors were encountered: