diff options
| author | dave <starpumadev@gmail.com> | 2019-02-07 09:57:16 -0500 |
|---|---|---|
| committer | dave <starpumadev@gmail.com> | 2019-02-07 09:57:16 -0500 |
| commit | 312841717619e397c7cb3255c1cc3e66c0a1044e (patch) | |
| tree | f003eb4a37c077e8fb99701a1e5e023a26b509c2 /src/components/user_settings/user_settings.js | |
| parent | a3a9949a21f69a21c4bd27cccfa2bc0ed1b0d323 (diff) | |
#315 - separate export and fetch follows logic
Diffstat (limited to 'src/components/user_settings/user_settings.js')
| -rw-r--r-- | src/components/user_settings/user_settings.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/components/user_settings/user_settings.js b/src/components/user_settings/user_settings.js index cb0ad9f3..a2a23c6f 100644 --- a/src/components/user_settings/user_settings.js +++ b/src/components/user_settings/user_settings.js @@ -238,9 +238,8 @@ const UserSettings = { exportFollows () { this.enableFollowsExport = false this.$store.state.api.backendInteractor - .fetchFriends({ - id: this.$store.state.users.currentUser.id, - isExport: true + .exportFriends({ + id: this.$store.state.users.currentUser.id }) .then((friendList) => { this.exportPeople(friendList, 'friends.csv') |
