Skip to content
This repository has been archived by the owner on Feb 15, 2022. It is now read-only.

Commit

Permalink
Fixed issue with send notification (#855)
Browse files Browse the repository at this point in the history
  • Loading branch information
darland authored and DeviaVir committed Dec 13, 2017
1 parent 8d620b5 commit 18bf5a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ module.exports = function container (get, set, clear) {
}
}

function pushMessage(str) {
function pushMessage(title, message) {
if (so.mode === 'live' || so.mode === 'paper') {
notify.pushMessage(str)
notify.pushMessage(title, message)
}
}

Expand Down

0 comments on commit 18bf5a7

Please sign in to comment.