mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
Dovrebbe sistemare il crash se non c'è nessun nuovo messaggio.
This commit is contained in:
parent
8dbc067a62
commit
886ae5741d
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ while(True):
|
||||||
#Ricevi gli ultimi messaggi
|
#Ricevi gli ultimi messaggi
|
||||||
data = getUpdates()
|
data = getUpdates()
|
||||||
#Se c'e' un nuovo messaggio
|
#Se c'e' un nuovo messaggio
|
||||||
if(data['ok'] and data['result']):
|
if(data['ok'] and data['result'][0]):
|
||||||
#Aggiorna l'update ID sul file
|
#Aggiorna l'update ID sul file
|
||||||
writeFile("lastid.txt", str(data['result'][0]['update_id'] + 1))
|
writeFile("lastid.txt", str(data['result'][0]['update_id'] + 1))
|
||||||
#Leggi i dati del messaggio
|
#Leggi i dati del messaggio
|
||||||
|
|
Loading…
Reference in a new issue