Add support for nip46 'secret'

This commit is contained in:
artur 2024-03-21 09:52:24 +01:00
parent f9443afccc
commit d35f0eb31b

View File

@ -32,7 +32,7 @@ export default function LoginNostrConnectView() {
if (uri.includes("@")) client = nostrConnectService.fromBunkerAddress(uri);
else client = nostrConnectService.fromBunkerURI(uri);
await client.connect();
await client.connect(new URL(uri).searchParams.get('secret') ?? undefined);
} else if (uri.startsWith("npub")) {
client = nostrConnectService.fromBunkerToken(uri);
const [npub, hexToken] = uri.split("#");