summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-04-03 17:24:36 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-04-03 17:24:36 +0900
commitec629c4d8d77f74660bc84727374bca04830b8ca (patch)
tree90ce1173d49683a3f0e6f00cccaf2bdb2b3c9fd6 /src
parentAdd createdAt property (diff)
parentMerge pull request #1383 from akihikodaki/unfollow (diff)
downloadsharkey-ec629c4d8d77f74660bc84727374bca04830b8ca.tar.gz
sharkey-ec629c4d8d77f74660bc84727374bca04830b8ca.tar.bz2
sharkey-ec629c4d8d77f74660bc84727374bca04830b8ca.zip
Merge branch 'master' of https://github.com/syuilo/misskey
Diffstat (limited to 'src')
-rw-r--r--src/remote/activitypub/act/follow.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote/activitypub/act/follow.ts b/src/remote/activitypub/act/follow.ts
index ec00b78bf9..385fc58efe 100644
--- a/src/remote/activitypub/act/follow.ts
+++ b/src/remote/activitypub/act/follow.ts
@@ -30,7 +30,7 @@ export default async (resolver, actor, activity, distribute) => {
const { _id } = await Following.findOne({
followerId: actor._id,
followeeId: followee._id
- })
+ });
return {
resolver,