aboutsummaryrefslogtreecommitdiff
path: root/main.js
diff options
context:
space:
mode:
authorcsett86 <csett86@web.de>2021-12-01 11:33:34 +0100
committerGitHub <noreply@github.com>2021-12-01 11:33:34 +0100
commit94f39ce1079d7c591f5d99736ca7f7fad71c214b (patch)
tree36959d8ad52c6d8e86273046fe67faded718bd25 /main.js
parente5a93e89e4d554ebfa0783e1c6c5330f01f1cb4c (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.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/main.js b/main.js
index 9da109d..1ac7795 100644
--- a/main.js
+++ b/main.js
@@ -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'));
-});