We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f70bf39 + 986ad42 commit 706aa84Copy full SHA for 706aa84
src/common/constans/renderer.ts
@@ -4,6 +4,6 @@ import path from 'path';
4
const appPath = app.getPath('userData');
5
6
const PLUGIN_INSTALL_DIR = path.join(appPath, './rubick-plugins-new');
7
-const PLUGIN_HISTORY = 'rubick-local-start-app';
+const PLUGIN_HISTORY = 'rubick-plugin-history';
8
9
export { PLUGIN_INSTALL_DIR, PLUGIN_HISTORY };
src/renderer/plugins-manager/index.ts
@@ -46,7 +46,7 @@ const createPluginManager = (): any => {
46
const initLocalStartPlugin = () => {
47
const result = ipcRenderer.sendSync('msg-trigger', {
48
type: 'dbGet',
49
- data: { id: PLUGIN_HISTORY },
+ data: { id: 'rubick-local-start-app' },
50
});
51
if (result && result.value) {
52
appList.value.push(...result.value);
0 commit comments