Aggiorna linkbot.py
This commit is contained in:
parent
4a2eda1f44
commit
5b803a9e00
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ class XMPPBot(ClientXMPP):
|
|||
# Metodo asincrono per la gestione dei messaggi ricevuti nella chat di gruppo
|
||||
async def muc_message(self, msg):
|
||||
# Filtra i messaggi per evitare di rispondere a quelli inviati dallo stesso bot
|
||||
if msg['mucnick'] != self.nick and 'body' in msg.keys():
|
||||
if msg['mucnick'] != self.nick and msg['mucnick'] != "infobot" and 'body' in msg.keys():
|
||||
text = msg['body']
|
||||
# Estrae gli URL dal messaggio ricevuto
|
||||
urls = self.extract_urls(text)
|
||||
|
|
Loading…
Reference in a new issue