Skip to content

Commit ff8b57e

Browse files
committed
fix user handle serialization in demo client
1 parent bd57536 commit ff8b57e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

demo_client/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ async def run(cmd):
3838
user_data = {
3939
"id": 1,
4040
"name": username,
41-
"user_handle": user_handle,
41+
"user_handle": util.b64_encode(user_handle),
4242
"cred_id": util.b64_encode(auth_data.cred_id),
4343
"pub_key": util.b64_encode(auth_data.pub_key_bytes),
4444
"sign_count": auth_data.sign_count,

0 commit comments

Comments
 (0)