Skip to content

Commit

Permalink
fix folder link bug
Browse files Browse the repository at this point in the history
  • Loading branch information
GeoffreyChen777 committed Dec 31, 2022
1 parent 7676e3c commit 07f2f6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/interactors/plugin-side-interactor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export class PluginSideInteractor {
ipcRenderer.on("plugin-comm-port", (event) => {
const [port] = event.ports;
this.port = port;
this.pluginLinkFolder(this.preference.get("pluginLinkedFolder") as string);
});
}

Expand Down Expand Up @@ -110,7 +111,6 @@ export class PluginSideInteractor {
}

linkedFolder(): string {
this.pluginLinkFolder(this.preference.get("pluginLinkedFolder") as string);
return this.preference.get("pluginLinkedFolder") as string;
}

Expand Down

0 comments on commit 07f2f6a

Please sign in to comment.