diff options
| author | Rapptz <[email protected]> | 2019-03-10 20:12:24 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-03-10 20:12:24 -0400 |
| commit | e15b4ef8e4f7a6ad2d898287b05950b1b78b0048 (patch) | |
| tree | d33b90e33ab0f0f07da0c64c770a48dcd0935616 | |
| parent | Fix volume command in basic voice example (diff) | |
| download | discord.py-e15b4ef8e4f7a6ad2d898287b05950b1b78b0048.tar.xz discord.py-e15b4ef8e4f7a6ad2d898287b05950b1b78b0048.zip | |
Revert default parameter use_cached of Attachment.save back to False.
Fix #1973
| -rw-r--r-- | discord/message.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/message.py b/discord/message.py index 32eb9b0d..eadd69fa 100644 --- a/discord/message.py +++ b/discord/message.py @@ -77,7 +77,7 @@ class Attachment: """:class:`bool`: Whether this attachment contains a spoiler.""" return self.filename.startswith('SPOILER_') - async def save(self, fp, *, seek_begin=True, use_cached=True): + async def save(self, fp, *, seek_begin=True, use_cached=False): """|coro| Saves this attachment into a file-like object. |