aboutsummaryrefslogtreecommitdiff
path: root/src/services/follow_manipulate
diff options
context:
space:
mode:
authorMaksim Pechnikov <parallel588@gmail.com>2019-09-21 16:24:47 +0300
committerMaksim Pechnikov <parallel588@gmail.com>2019-09-21 16:24:47 +0300
commit8721fb57fc3ee169ba401ce498280b8d7257297d (patch)
tree02cccad7497b39ef44b4ee1d7c284f1ead341944 /src/services/follow_manipulate
parent9b163d281670e0c0a589adce46727284fbcba0ad (diff)
added support hide\show reblogs from a specific user
Diffstat (limited to 'src/services/follow_manipulate')
-rw-r--r--src/services/follow_manipulate/follow_manipulate.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/services/follow_manipulate/follow_manipulate.js b/src/services/follow_manipulate/follow_manipulate.js
index d82ce593..598cb5f7 100644
--- a/src/services/follow_manipulate/follow_manipulate.js
+++ b/src/services/follow_manipulate/follow_manipulate.js
@@ -14,7 +14,7 @@ const fetchUser = (attempt, user, store) => new Promise((resolve, reject) => {
})
export const requestFollow = (user, store) => new Promise((resolve, reject) => {
- store.state.api.backendInteractor.followUser(user.id)
+ store.state.api.backendInteractor.followUser({ id: user.id })
.then((updated) => {
store.commit('updateUserRelationship', [updated])