Skip to content

Commit c6d7d16

Browse files
committed
fix(notify): always send override: true on public notify method
This will allow manual calls to `.notify()` fixes #538
1 parent 838c837 commit c6d7d16

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/public/notify.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ module.exports = function (browserSync) {
1111
if (msg) {
1212
browserSync.events.emit("browser:notify", {
1313
message: msg,
14-
timeout: timeout || 2000
14+
timeout: timeout || 2000,
15+
override: true
1516
});
1617
}
1718
};

0 commit comments

Comments
 (0)