From c3ed0096a7dd1281ff23dbfa456caac847303216 Mon Sep 17 00:00:00 2001 From: ClydeWallace22 <48610606+BrandtH22@users.noreply.github.com> Date: Wed, 24 Aug 2022 22:04:19 -0600 Subject: [PATCH] Convert wallet id to int --- js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/app.js b/js/app.js index 064a435..5248ef8 100755 --- a/js/app.js +++ b/js/app.js @@ -644,7 +644,7 @@ app.updateRpcCommand = function (userData) { } let rpcParts = { - "wallet_id": userData.walletId, + "wallet_id": parseInt(userData.walletId), "uris": assetUris, "hash": userData.assetHash, "meta_uris": metadataUris,