We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a59d48 commit 0de3d1cCopy full SHA for 0de3d1c
src/lib/chat/helpers/normalizeMessage.js
@@ -96,7 +96,11 @@ export function normalizeMessage(abstract) {
96
transaction.type = notSupportedYetCrypto || 'UNKNOWN_CRYPTO'
97
transaction.status = TS.UNKNOWN
98
}
99
- } else if (typeof abstract.message === 'string' || abstract.type === Transactions.SEND) {
+ } else if (
100
+ typeof abstract.message === 'string' ||
101
+ abstract.type === Transactions.SEND ||
102
+ abstract.amount > 0
103
+ ) {
104
// ADM transaction or Message
105
transaction.message = abstract.message || ''
106
transaction.hash = abstract.id // adm transaction id (hash)
0 commit comments