diff --git a/app/lib/utils/config.js b/app/lib/utils/config.js index a70ae22b..802ef8d1 100644 --- a/app/lib/utils/config.js +++ b/app/lib/utils/config.js @@ -7,6 +7,7 @@ export function getConfig () { export function subscribe (fn) { ipcRenderer.on('config change', fn); + ipcRenderer.on('plugins change', fn); return () => { ipcRenderer.removeListener('config change', fn); };