upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--55.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/55.md b/55.md
index 218af35..b4a3aec 100644
--- a/55.md
+++ b/55.md
@@ -210,10 +210,10 @@ launcher.launch(intent)
210 context.startActivity(intent) 210 context.startActivity(intent)
211 ``` 211 ```
212 - result: 212 - result:
213 - If the user approved intent it will return the **signature** and **id** fields 213 - If the user approved intent it will return the **result** and **id** fields
214 214
215 ```kotlin 215 ```kotlin
216 val encryptedText = intent.data?.getStringExtra("signature") 216 val encryptedText = intent.data?.getStringExtra("result")
217 // the id you sent 217 // the id you sent
218 val id = intent.data?.getStringExtra("id") 218 val id = intent.data?.getStringExtra("id")
219 ``` 219 ```