Skip to content

Commit 8e7c203

Browse files
committed
Converted holder_id to string before sending over the wire
1 parent 245b3fc commit 8e7c203

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bugout/journal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def update_journal_scopes(
7272
journal_scopes_path = f"journals/{journal_id}/scopes"
7373
json = {
7474
"holder_type": holder_type.value,
75-
"holder_id": holder_id,
75+
"holder_id": str(holder_id),
7676
"permission_list": permission_list,
7777
}
7878
headers = {

0 commit comments

Comments
 (0)