diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2018-03-02 13:19:28 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2018-03-02 19:59:14 +0100 |
| commit | 668e0c6ed9778fe06c13d6586d13dbffcb70635f (patch) | |
| tree | c40013259dd46b661587f68cf96f147cae35f867 /app/lib | |
| parent | 62c82f7a111293e71eeda120cf9f2da47efd1c63 (diff) | |
| download | mullvadvpn-668e0c6ed9778fe06c13d6586d13dbffcb70635f.tar.xz mullvadvpn-668e0c6ed9778fe06c13d6586d13dbffcb70635f.zip | |
Add extra newline to .mullvad_rpc_address
Diffstat (limited to 'app/lib')
| -rw-r--r-- | app/lib/backend.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/backend.js b/app/lib/backend.js index 00c40fa05f..45a91a9a50 100644 --- a/app/lib/backend.js +++ b/app/lib/backend.js @@ -72,7 +72,7 @@ export type IpcCredentials = { }; export function parseIpcCredentials(data: string): ?IpcCredentials { const [connectionString, sharedSecret] = data.split('\n', 2); - if(connectionString && sharedSecret) { + if(connectionString && sharedSecret !== undefined) { return { connectionString, sharedSecret, |
