This commit is contained in:
super123 2026-02-26 03:39:20 +05:30 committed by GitHub
commit da513c1d1e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -413,7 +413,7 @@ class MessageParser:
def process_identify(self, data, decompress=True):
try:
if decompress:
data = zlib.decompress(data)
data = zlib.decompress(data).decode('utf-8')
self.raw_identify_data = data
data = json.loads(data)
self.fill_enumerations(data.get('enumerations', {}))