Redesign asset retrieval in the library.
Most assets now return a new class named `Asset`. This allows for the assets to be consistently saved via a `save` method instead of special casing for `Attachment`. `AppInfo` is no longer a namedtuple it is a fully documented dataclass, as well as having the state attached to it. Fixes #1997
This commit is contained in:
@ -112,7 +112,7 @@ class Attachment:
|
||||
The number of bytes written.
|
||||
"""
|
||||
url = self.proxy_url if use_cached else self.url
|
||||
data = await self._http.get_attachment(url)
|
||||
data = await self._http.get_from_cdn(url)
|
||||
if isinstance(fp, io.IOBase) and fp.writable():
|
||||
written = fp.write(data)
|
||||
if seek_begin:
|
||||
|
Reference in New Issue
Block a user