Merge pull request #320 from AlphaX-Projects/master

Fix broken qortal request SEND_CHAT_MESSAGE
This commit is contained in:
AlphaX-Projects 2024-06-14 09:44:28 +02:00 committed by GitHub
commit 643e7fa80a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1181,7 +1181,10 @@ class WebBrowser extends LitElement {
return await sendMessageRequest() return await sendMessageRequest()
} }
const result = await showModalAndWait( const result = await showModalAndWait(
actions.SEND_CHAT_MESSAGE actions.SEND_CHAT_MESSAGE,
{
message: data.message
}
) )
if (result.action === "accept") { if (result.action === "accept") {
let hasPublicKey = true let hasPublicKey = true