Skip to content

Commit

Permalink
Merge branch 'tauri-apps:v2' into v2
Browse files Browse the repository at this point in the history
  • Loading branch information
hygkui authored Dec 28, 2023
2 parents 2b6f670 + 2e2fc8d commit 7fb417c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changes/fs-unwtach-rid.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"fs-js": "patch"
---

Fix `invalid args id for command unwatch` error when trying to unwatch a previously watched file or directory.
4 changes: 2 additions & 2 deletions plugins/fs/guest-js/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1135,8 +1135,8 @@ type DebouncedEvent =
*/
type UnwatchFn = () => void;

async function unwatch(id: number): Promise<void> {
await invoke("plugin:fs|unwatch", { id });
async function unwatch(rid: number): Promise<void> {
await invoke("plugin:fs|unwatch", { rid });
}

/**
Expand Down
2 changes: 1 addition & 1 deletion plugins/fs/src/api-iife.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7fb417c

Please sign in to comment.