1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

Magari si sistema il bug. Eh?

This commit is contained in:
Steffo 2015-09-23 21:35:20 +02:00
parent 229627f82c
commit c5c9422c7a

View file

@ -60,8 +60,8 @@ def getUpdates():
#Aggiorna l'update ID sul file
writeFile("lastid.txt", str(data['result'][0]['update_id'] + 1))
#...esiste il messaggio? telegram wtf
if(data['result'][0]['message'] != None):
if(data['result'][0]['message']['text'] != None):
if(data['result'][0]['message'] != []):
if(data['result'][0]['message']['text'] != []):
return data['result'][0]['message']
else:
raise KeyError("Qualcosa nel messaggio di Telegram è andato storto. Molto storto.")