This commit is contained in:
syuilo 2018-10-22 03:34:56 +09:00
parent 29fc6de330
commit 0dc94547f5
No known key found for this signature in database
GPG Key ID: BDC4C49D06AB9D69
1 changed files with 2 additions and 2 deletions

View File

@ -807,10 +807,10 @@ class FollowingStats extends Stats<FollowingLog> {
this.inc({
[isLocalUser(follower) ? 'local' : 'remote']: { followings: update }
});
}, follower._id);
this.inc({
[isLocalUser(followee) ? 'local' : 'remote']: { followers: update }
});
}, followee._id);
}
}