Browse Source
Fix allowed_mentions when sending files
pull/5839/head
Xua
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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() |
|
|
|