forked from AkkomaGang/akkoma-fe
Apply suggestion to src/services/follow_manipulate/follow_manipulate.js
This commit is contained in:
parent
5f3ac6625f
commit
114b5f6eff
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ const fetchUser = (attempt, user, store) => new Promise((resolve, reject) => {
|
|||
.catch((e) => reject(e))
|
||||
}, 500)
|
||||
}).then(([following, sent, locked, attempt]) => {
|
||||
if (!following && !locked && attempt <= 3) {
|
||||
if (!following && !(locked && sent) && attempt <= 3) {
|
||||
// If we BE reports that we still not following that user - retry,
|
||||
// increment attempts by one
|
||||
return fetchUser(++attempt, user, store)
|
||||
|
|
Loading…
Reference in a new issue