diff options
| author | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2018-08-03 08:50:43 -0300 |
|---|---|---|
| committer | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2018-08-08 08:12:47 -0300 |
| commit | 2c4d95cea476a0f038b731e13088d547465971c3 (patch) | |
| tree | f85fc61e590e2572bcda67e80307550ecf16e0ea /app | |
| parent | 3221c88864426691153f2441b4b42fa282cac667 (diff) | |
| download | mullvadvpn-2c4d95cea476a0f038b731e13088d547465971c3.tar.xz mullvadvpn-2c4d95cea476a0f038b731e13088d547465971c3.zip | |
Use strict comparison operator
Diffstat (limited to 'app')
| -rw-r--r-- | app/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/main.js b/app/main.js index c498e3bee4..987fa47463 100644 --- a/app/main.js +++ b/app/main.js @@ -61,7 +61,7 @@ const ApplicationMain = { _overrideAppPaths() { // This ensures that on Windows the %LOCALAPPDATA% directory is used instead of the %ADDDATA% // directory that has roaming contents - if (process.platform == 'win32') { + if (process.platform === 'win32') { const appDataDir = process.env.LOCALAPPDATA; if (appDataDir) { app.setPath('appData', appDataDir); |
