From 6d6a44626d4dec58bb61bd40d5bd63d69818c540 Mon Sep 17 00:00:00 2001 From: Tomohiro Endo Date: Sun, 6 Nov 2022 08:30:12 +0900 Subject: [PATCH] fix(watcher): failure on watcher teardown message (#1726) --- lua/nvim-tree/watcher.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/nvim-tree/watcher.lua b/lua/nvim-tree/watcher.lua index 54bb9bd7..5a2b1709 100644 --- a/lua/nvim-tree/watcher.lua +++ b/lua/nvim-tree/watcher.lua @@ -89,7 +89,7 @@ function Event:destroy(message) if self._fs_event then if message then - utils.notify.warn(message) + notify.warn(message) end local rc, _, name = self._fs_event:stop()