-
Notifications
You must be signed in to change notification settings - Fork 457
Open
Labels
Description
await revealItemInDir(save_to_path)This fails with:
[Error] Unhandled Promise Rejection: invalid args `path` for command `reveal_item_in_dir`: command reveal_item_in_dir missing required key path
(anonymous function) (MyComponent.svelte:881)
I dived into the releases and suspect it happened here b8056f4
Specifically here
Quick workaround is manually calling the invoke command.
<<<<<<< HOTFIX
await invoke("plugin:opener|reveal_item_in_dir", { path: save_to_path })
=======
await revealItemInDir(save_to_path)
>>>>>>> BEFORE