From 9ded3ea1eb71c8aea9a652312a1bca77033905d5 Mon Sep 17 00:00:00 2001 From: David Humphrey Date: Mon, 25 Jun 2018 14:10:27 -0400 Subject: [PATCH] Fixup comment that got removed --- src/filesystem/implementation.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/filesystem/implementation.js b/src/filesystem/implementation.js index c82ab07..b6d0910 100644 --- a/src/filesystem/implementation.js +++ b/src/filesystem/implementation.js @@ -77,6 +77,8 @@ function update_node_times(context, path, node, times, callback) { } function complete(error) { + // Queue this change so we can send watch events. + // Unlike node.js, we send the full path vs. basename/dirname only. context.changes.push({ event: 'change', path: path }); callback(error); }