🐛 GzipPacked: Fix attr get
This commit is contained in:
parent
e1eee914ef
commit
db65a10f03
@ -59,3 +59,8 @@ class GzipPacked(TLObject):
|
||||
)
|
||||
|
||||
return b.getvalue()
|
||||
|
||||
def __getattr__(self, item):
|
||||
if item == "packed_data":
|
||||
return self.packed_data
|
||||
return getattr(self.packed_data, item)
|
||||
|
Loading…
Reference in New Issue
Block a user