diff options
| author | Erik Larkö <erik@mullvad.net> | 2017-09-29 13:13:37 +0200 |
|---|---|---|
| committer | Erik Larkö <erik@mullvad.net> | 2017-10-05 13:47:18 +0200 |
| commit | 44dcf8c58a827b5ab1bfa82f194920cefa510a0a (patch) | |
| tree | 953462bc048ac15b7924e7063387035c69857715 | |
| parent | b27bcfad07ed46b2e0ca78c1e35210e8df9b5d66 (diff) | |
| download | mullvadvpn-44dcf8c58a827b5ab1bfa82f194920cefa510a0a.tar.xz mullvadvpn-44dcf8c58a827b5ab1bfa82f194920cefa510a0a.zip | |
Autoconnect on login
| -rw-r--r-- | app/lib/backend.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/lib/backend.js b/app/lib/backend.js index cbbd555987..270d1e2a92 100644 --- a/app/lib/backend.js +++ b/app/lib/backend.js @@ -147,6 +147,7 @@ export class Backend { // the 'Login Successful' screen to be visible setTimeout(() => { this._store.dispatch(push('/connect')); + this.connect(); }, 1000); }).catch(e => { log.error('Failed to log in,', e.message); |
