Skip to content

Commit

Permalink
Force hashes to unsigned ints for msgpack
Browse files Browse the repository at this point in the history
  • Loading branch information
lalinsky committed Dec 7, 2024
1 parent ca89239 commit b071a56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion legacy-proxy/proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ async def handle_request(self, request):
{
"i": {
"i": int(request[1]),
"h": [int(v) for v in request[2].split(",")],
"h": [int(v)&0xffffffff for v in request[2].split(",")],
}
}
)
Expand Down

0 comments on commit b071a56

Please sign in to comment.