Revert default parameter use_cached of Attachment.save back to False.

Fix #1973
This commit is contained in:
Rapptz 2019-03-10 20:12:24 -04:00
parent 8db7b5eb19
commit e15b4ef8e4

View File

@ -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.