Skip to content

Commit

Permalink
fix checksum not being returned for bytearray
Browse files Browse the repository at this point in the history
  • Loading branch information
hatns authored May 22, 2024
1 parent ff8e298 commit 96440f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion msp.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def from_object(obj):
return str(obj)

if isinstance(obj, amf3.ByteArray):
from_byte_array(obj)
return from_byte_array(obj)

if isinstance(obj, (date, datetime)):
return str(obj.year) + str(obj.month - 1) + str(obj.day)
Expand Down

0 comments on commit 96440f1

Please sign in to comment.