Skip to content

Commit b071a56

Browse files
committedDec 7, 2024
Force hashes to unsigned ints for msgpack
1 parent ca89239 commit b071a56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎legacy-proxy/proxy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ async def handle_request(self, request):
8383
{
8484
"i": {
8585
"i": int(request[1]),
86-
"h": [int(v) for v in request[2].split(",")],
86+
"h": [int(v)&0xffffffff for v in request[2].split(",")],
8787
}
8888
}
8989
)

0 commit comments

Comments
 (0)
Failed to load comments.