Remove keytar-forked (#2723)

This commit is contained in:
Michael Telatynski
2025-11-28 14:52:35 +00:00
committed by GitHub
parent e63d76558b
commit c827e806ea
7 changed files with 13 additions and 237 deletions
+1 -1
View File
@@ -111,7 +111,7 @@ ipcMain.on("ipcCall", async function (_ev: IpcMainEvent, payload) {
try {
ret = await store.getSecret(`${args[0]}|${args[1]}`);
} catch {
// if an error is thrown (e.g. keytar can't connect to the keychain),
// if an error is thrown (e.g. we can't initialise safeStorage),
// then return null, which means the default pickle key will be used
ret = null;
}