From d7db75fc691a5b182d133d72fb3692b57cf2aeca Mon Sep 17 00:00:00 2001 From: greenart7c3 <115044884+greenart7c3@users.noreply.github.com> Date: Mon, 5 Jan 2026 10:57:34 -0300 Subject: [PATCH] NIP-55: Fix return field from nip44_encrypt (#2184) --- 55.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/55.md b/55.md index 218af354..b4a3aec8 100644 --- a/55.md +++ b/55.md @@ -210,10 +210,10 @@ launcher.launch(intent) context.startActivity(intent) ``` - result: - - If the user approved intent it will return the **signature** and **id** fields + - If the user approved intent it will return the **result** and **id** fields ```kotlin - val encryptedText = intent.data?.getStringExtra("signature") + val encryptedText = intent.data?.getStringExtra("result") // the id you sent val id = intent.data?.getStringExtra("id") ```