MozillaItalia / mozitaantispam_bot

Il bot Telegram per evitare gli utenti "spam" per i gruppi di Mozilla Italia e regolamento
Creative Commons Zero v1.0 Universal
6 stars 7 forks source link

Correggere "telegram_events.py" per rilevamento GIF #20

Closed Sav22999 closed 4 years ago

Sav22999 commented 4 years ago

Telegram ha modificato gli eventi e le GIF, al momento, sono rilevate come "Documento".

Possibile soluzione: Riga 84 (attuale): elif ("document" in msg) and (("D" in allowed_events) or all_events): Riga 84 (soluzione): elif ("document" in msg) and not ("animation" in msg) and (("D" in allowed_events) or all_events):

ilyasmg commented 4 years ago

lo aggiungo io