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

La variabile lastmsg deve essere globale

This commit is contained in:
Steffo 2015-08-07 16:28:37 +02:00
parent 771356ddba
commit 1ebdfbf7b1

View file

@ -42,6 +42,7 @@ def sendMessage(content, to):
'text': content #Il messaggio da mandare
}
#Antispam: manda il messaggio solo se l'ultimo messaggio è diverso da quello che deve mandare ora.
global lastmsg
if(lastmsg != content):
#Manda il messaggio
r = requests.get("https://api.telegram.org/bot" + token + "/sendMessage", params=parametri)