1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-21 23:17:42 +02:00

Desktop: Resolves #2773: Add support for system keychain to save sensitive settings (#3207)

This commit is contained in:
Laurent Cozic
2020-06-03 17:07:50 +01:00
committed by GitHub
parent 5082181c49
commit 26ce102113
28 changed files with 661 additions and 40 deletions

View File

@ -5,7 +5,7 @@ const shim = {};
shim.isNode = () => {
if (typeof process === 'undefined') return false;
if (shim.isElectron()) return true;
return process.title == 'node';
return process.title == 'node' || (process.title && process.title.indexOf('gulp') === 0);
};
shim.isReactNative = () => {