diff options
Diffstat (limited to 'app/lib')
| -rw-r--r-- | app/lib/backend.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/lib/backend.js b/app/lib/backend.js index 9c5b2ed064..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); @@ -149,7 +149,7 @@ export class Backend { this._store.dispatch(accountActions.loginChange({ accountNumber: accountNumber, - status: 'connecting', + status: 'logging in', error: null, })); |
