Skip to content

Commit

Permalink
fix(notify): always send override: true on public notify method
Browse files Browse the repository at this point in the history
This will allow manual calls to `.notify()`

fixes #538
  • Loading branch information
shakyShane committed Feb 13, 2017
1 parent 838c837 commit c6d7d16
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/public/notify.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ module.exports = function (browserSync) {
if (msg) {
browserSync.events.emit("browser:notify", {
message: msg,
timeout: timeout || 2000
timeout: timeout || 2000,
override: true
});
}
};
Expand Down

0 comments on commit c6d7d16

Please sign in to comment.