We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents acc0ac1 + 0be743e commit 83d376dCopy full SHA for 83d376d
1 file changed
frontend/src/service/service.js
@@ -126,7 +126,10 @@ export const warpnetService = {
126
127
warpnetService.setOwnerProfile(resp.identity.owner)
128
129
- const qrData = JSON.stringify(resp.identity);
+ // The QR carries the full AuthNodeInfo envelope (identity + node_info)
130
+ // so the mobile pairing client gets both the credentials and the
131
+ // multiaddrs/peer-id it needs to dial this node.
132
+ const qrData = JSON.stringify(resp);
133
resp.identity.token = null // for security reasons
134
135
const qrCode = await buildQRCode(qrData)
0 commit comments