Skip to content

Commit

Permalink
fix: explorer node fs watcher
Browse files Browse the repository at this point in the history
  • Loading branch information
Cubxity committed May 8, 2023
1 parent eebd567 commit 079a01c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ExplorerNode.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
onMount(() => {
return appWindow.listen<FSRefreshEvent>("fs_refresh", ({ payload }) => {
if (payload.path === path) update();
if (`./${payload.path}` === path) update();
});
});
Expand Down

0 comments on commit 079a01c

Please sign in to comment.