diff options
author | csett86 <csett86@web.de> | 2021-12-01 11:33:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-01 11:33:34 +0100 |
commit | 94f39ce1079d7c591f5d99736ca7f7fad71c214b (patch) | |
tree | 36959d8ad52c6d8e86273046fe67faded718bd25 /main.js | |
parent | e5a93e89e4d554ebfa0783e1c6c5330f01f1cb4c (diff) |
refactor: Remove electron-store to be ready for electron 14+ (#668)
Release this ~3 months after 2.9.0 was released (21 Sep 2021) so
that users had 3 months to migrate to local storage
Signed-off-by: Christoph Settgast <csett86@web.de>
Diffstat (limited to 'main.js')
-rw-r--r-- | main.js | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -399,7 +399,3 @@ ipcMain.on('renderer-ready', () => { .send('protocol-data-msg', protocolDataForFrontApp); } }); - -ipcMain.on('electron-store-exists', event => { - event.returnValue = existsSync(path.join(app.getPath('userData'), 'config.json')); -}); |