forked from ticketfrei/ticketfrei
Merge pull request #101 from SchoolGuy/fix-non-text-message-crash
Fix non text message crash
This commit is contained in:
commit
b2acc15400
|
@ -38,6 +38,12 @@ class TelegramBot(Bot):
|
|||
"Sending Photos is not supported for privacy reasons. Can "
|
||||
"you describe it as text instead?")
|
||||
continue
|
||||
if hasattr(update.message, 'text'):
|
||||
tb.send_message(
|
||||
update.message.sender.id,
|
||||
"We only support text only reporting for privacy reasons."
|
||||
"Can you describe it as text instead?")
|
||||
continue
|
||||
if update.message.text.lower() == "/start":
|
||||
user.add_telegram_subscribers(update.message.sender.id)
|
||||
tb.send_message(
|
||||
|
|
Loading…
Reference in a new issue