Don't report errors after stop

This commit is contained in:
Ash Wilson
2017-06-21 10:21:55 -04:00
parent baf71492a2
commit 8d86acf19c

View File

@@ -130,6 +130,10 @@ class NativeWatcher {
//
// * `err` The native filesystem error.
onError (err) {
if (!this.isRunning()) {
return
}
console.error(err)
}
}