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:
parent
771356ddba
commit
1ebdfbf7b1
1 changed files with 1 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue