mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-18 23:44:59 +01:00
Merge pull request #113 from vector-im/dbkr/move_function_for_linter
Fix lint error
This commit is contained in:
commit
b839264d9f
@ -99,6 +99,13 @@ if (argv["help"]) {
|
|||||||
app.exit();
|
app.exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Electron creates the user data directory (with just an empty 'Dictionaries' directory...)
|
||||||
|
// as soon as the app path is set, so pick a random path in it that must exist if it's a
|
||||||
|
// real user data directory.
|
||||||
|
function isRealUserDataDir(d) {
|
||||||
|
return fs.existsSync(path.join(d, 'IndexedDB'));
|
||||||
|
}
|
||||||
|
|
||||||
// check if we are passed a profile in the SSO callback url
|
// check if we are passed a profile in the SSO callback url
|
||||||
let userDataPath;
|
let userDataPath;
|
||||||
|
|
||||||
@ -114,12 +121,6 @@ if (userDataPathInProtocol) {
|
|||||||
if (argv['profile']) {
|
if (argv['profile']) {
|
||||||
newUserDataPath += '-' + argv['profile'];
|
newUserDataPath += '-' + argv['profile'];
|
||||||
}
|
}
|
||||||
// Electron creates the user data directory (with just an empty 'Dictionaries' directory...)
|
|
||||||
// as soon as the app path is set, so pick a random path in it that must exist if it's a
|
|
||||||
// real user data directory.
|
|
||||||
function isRealUserDataDir(d) {
|
|
||||||
return fs.existsSync(path.join(d, 'IndexedDB'));
|
|
||||||
}
|
|
||||||
const newUserDataPathExists = isRealUserDataDir(newUserDataPath);
|
const newUserDataPathExists = isRealUserDataDir(newUserDataPath);
|
||||||
const oldUserDataPath = path.join(app.getPath('appData'), 'Riot');
|
const oldUserDataPath = path.join(app.getPath('appData'), 'Riot');
|
||||||
const oldUserDataPathExists = isRealUserDataDir(oldUserDataPath);
|
const oldUserDataPathExists = isRealUserDataDir(oldUserDataPath);
|
||||||
|
Loading…
Reference in New Issue
Block a user