Merge pull request #1 from michieldwitte/master

If the payload type is an octet-stream don't parse it as utf-8
Mesure-preliminaire
Giacomo Tanganelli 6 years ago committed by GitHub
commit 9f608e46ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -113,6 +113,9 @@ class Serializer(object):
raise AttributeError("Packet length %s, pos %s" % (length_packet, pos))
message.payload = ""
payload = values[pos:]
if message.payload_type == defines.Content_types["application/octet-stream"]:
message.payload = payload
else:
message.payload = payload.decode("utf-8")
pos += len(payload)

Loading…
Cancel
Save