Browse Source

Fix allowed_mentions when sending files

pull/5839/head
Xua 5 years ago
committed by GitHub
parent
commit
6ae615baae
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/abc.py

2
discord/abc.py

@ -877,7 +877,7 @@ class Messageable(metaclass=abc.ABCMeta):
raise InvalidArgument('file parameter must be File')
try:
data = await state.http.send_files(channel.id, files=[file],
data = await state.http.send_files(channel.id, files=[file], allowed_mentions=allowed_mentions,
content=content, tts=tts, embed=embed, nonce=nonce)
finally:
file.close()

Loading…
Cancel
Save