summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2018-04-03 17:23:41 +0900
committerGitHub <noreply@github.com>2018-04-03 17:23:41 +0900
commita596a960bf8af77e8cc38227aa833fdea5290419 (patch)
treed128e2113a835c4359c54c75f2120ae0e51a0776 /src
parentMerge pull request #1382 from akihikodaki/unfollow (diff)
parentAdd a missing semicolon (diff)
downloadsharkey-a596a960bf8af77e8cc38227aa833fdea5290419.tar.gz
sharkey-a596a960bf8af77e8cc38227aa833fdea5290419.tar.bz2
sharkey-a596a960bf8af77e8cc38227aa833fdea5290419.zip
Merge pull request #1383 from akihikodaki/unfollow
Add a missing semicolon
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,