From 4b311f71d93cac7599450a98c0701b7815c69eeb Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sun, 20 Sep 2015 00:51:14 +0200 Subject: [PATCH] Odio quel bug. --- adventuremode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adventuremode.py b/adventuremode.py index 01f69634..8a25577e 100644 --- a/adventuremode.py +++ b/adventuremode.py @@ -58,7 +58,7 @@ 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'] is not None): + if(data['result'][0]['message']['text'] is not None): return data['result'][0]['message'] else: raise KeyError("Qualcosa nel messaggio di Telegram รจ andato storto. Molto storto.")