Browse Source

Update bot.py

pull/19/head
Purpur 3 years ago
committed by GitHub
parent
commit
65a98291e5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      bot.py

4
bot.py

@ -34,8 +34,8 @@ async def on_ready():
async def on_message(message):
# Binflop
if len(message.attachments) > 0:
if not message.attachments[0].url.endswith(
('.png', '.jpg', '.jpeg', '.mp4', '.mov', '.avi', '.gif', '.image', '.svg', '.jar', ',zip', '.tar', '.gz', '.msi', '.exe', '.html')):
if not message.attachments[0].url.lower().endswith(
('.png', '.jpg', '.jpeg', '.mp4', '.mov', '.avi', '.gif', '.image', '.svg', '.jar', ',zip', '.tar', '.gz', '.msi', '.exe', '.html', '.webm')):
text = await discord.Attachment.read(message.attachments[0], use_cached=False)
text = text.decode('Latin-1')
text = "\n".join(text.splitlines())

Loading…
Cancel
Save