Merge pull request #1539 from greenart7c3/main

Fix DecryptZapRequest CommandType
This commit is contained in:
Vitor Pamplona
2025-10-29 14:00:05 -04:00
committed by GitHub

View File

@@ -35,7 +35,7 @@ class DecryptZapRequest {
): Intent {
val intent = Intent(Intent.ACTION_VIEW, "nostrsigner:${event.toJson()}".toUri())
intent.`package` = packageName
intent.putExtra("type", CommandType.NIP44_DECRYPT.code)
intent.putExtra("type", CommandType.DECRYPT_ZAP_EVENT.code)
intent.putExtra("current_user", loggedInUser)
return intent
}