🐛 GzipPacked: Fix attr get
This commit is contained in:
parent
3812c5c584
commit
c1bd82ffdd
@ -59,3 +59,8 @@ class GzipPacked(TLObject):
|
|||||||
)
|
)
|
||||||
|
|
||||||
return b.getvalue()
|
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