Fix NormalChannelData deserialization

This commit is contained in:
Andrew Ferrazzutti 2022-02-26 02:21:05 -05:00
parent b57c74eeb6
commit b1e922a0fd
2 changed files with 2 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class NormalChannelData(Channel, ChannelData[NormalChannelInfo]):
@classmethod
def deserialize(cls, data: JSON) -> "NormalChannelData":
data["info"] = NormalChannelInfo.deserialize(data["info"])
return cls.deserialize(data)
return super().deserialize(data)
__all__ = [

View File

@ -50,6 +50,7 @@ class LoginResult(SerializableAttrs):
revision: int
revisionInfo: str
minLogId: Long
# TODO Consider catching SerializerError for channelList entries
__all__ = [