diff options
| author | Andrej Mihajlov <and@codeispoetry.ru> | 2017-02-20 17:14:33 +0000 |
|---|---|---|
| committer | Andrej Mihajlov <and@codeispoetry.ru> | 2017-02-20 17:14:59 +0000 |
| commit | a6c2bcb976e0910f4698b5a38be66858d8b08e05 (patch) | |
| tree | a0254633d32196c427ab29bc067d65865d3c5532 | |
| parent | 173c63d2c368510ad98f407f2d7485190580cd9d (diff) | |
| download | mullvadvpn-a6c2bcb976e0910f4698b5a38be66858d8b08e05.tar.xz mullvadvpn-a6c2bcb976e0910f4698b5a38be66858d8b08e05.zip | |
Add preferredServer option to settings
| -rw-r--r-- | app/reducers/settings.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/reducers/settings.js b/app/reducers/settings.js index f4f44119ad..022288b90c 100644 --- a/app/reducers/settings.js +++ b/app/reducers/settings.js @@ -3,7 +3,8 @@ import { handleActions } from 'redux-actions'; import actions from '../actions/settings'; const initialState = { - autoSecure: false + autoSecure: false, + preferredServer: 'Sweden' }; export default handleActions({ |
