diff --git a/renderer/reducers/transaction.js b/renderer/reducers/transaction.js index 5f711539eca..66331dd4a15 100644 --- a/renderer/reducers/transaction.js +++ b/renderer/reducers/transaction.js @@ -248,7 +248,7 @@ export const receiveTransactionData = transaction => (dispatch, getState) => { dispatch(fetchChannels()) const intl = getIntl() // HTML 5 desktop notification for the new transaction - if (transaction.isReceived) { + if (CoinBig(transaction.amount).gt(0)) { showSystemNotification(intl.formatMessage(messages.transaction_received_title), { body: intl.formatMessage(messages.transaction_received_body), })