forked from FoundKeyGang/FoundKey
Fix #2013
This commit is contained in:
parent
ce405fc4f6
commit
1e8c1efe2f
1 changed files with 6 additions and 0 deletions
|
@ -66,6 +66,12 @@ export default async function(followee: IUser, follower: IUser) {
|
||||||
});
|
});
|
||||||
//#endregion
|
//#endregion
|
||||||
|
|
||||||
|
await User.update({ _id: followee._id }, {
|
||||||
|
$inc: {
|
||||||
|
pendingReceivedFollowRequestsCount: -1
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
packUser(followee, followee, {
|
packUser(followee, followee, {
|
||||||
detail: true
|
detail: true
|
||||||
}).then(packed => event(followee._id, 'meUpdated', packed));
|
}).then(packed => event(followee._id, 'meUpdated', packed));
|
||||||
|
|
Loading…
Reference in a new issue