Merge pull request #152 from brugeman/patch-1

Fix pubkey param to nip46 connect call
This commit is contained in:
hzrd149
2024-03-27 09:07:30 -05:00
committed by GitHub

View File

@@ -192,7 +192,7 @@ export class NostrConnectClient {
try {
const result = await this.makeRequest(
NostrConnectMethod.Connect,
[this.publicKey, token || '', Perms],
[this.pubkey, token || '', Perms],
);
this.isConnected = true;
return result;