diff options
| author | Erik Larkö <erik@mullvad.net> | 2017-06-26 16:30:54 +0200 |
|---|---|---|
| committer | Erik Larkö <erik@mullvad.net> | 2017-07-07 13:49:29 +0200 |
| commit | 16ee9a212560f0a1989dc278cb9281152307275d (patch) | |
| tree | 3033099f2a3081618e05531a5e828b910b25c244 /app/lib | |
| parent | 5da649c239443431fe492fdf57fbdaee0099ca79 (diff) | |
| download | mullvadvpn-16ee9a212560f0a1989dc278cb9281152307275d.tar.xz mullvadvpn-16ee9a212560f0a1989dc278cb9281152307275d.zip | |
Move geoIP from account to connection
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 6b0e1f100f..a8774dc599 100644 --- a/app/lib/backend.js +++ b/app/lib/backend.js @@ -108,7 +108,7 @@ export class Backend { country: location.country, city: location.city }; - this._store.dispatch(accountActions.loginChange(newLocation)); + this._store.dispatch(connectionActions.connectionChange(newLocation)); }) .catch(e => { log.info('Failed getting new location', e); |
