diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-04-03 17:23:41 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-03 17:23:41 +0900 |
| commit | a596a960bf8af77e8cc38227aa833fdea5290419 (patch) | |
| tree | d128e2113a835c4359c54c75f2120ae0e51a0776 /src | |
| parent | Merge pull request #1382 from akihikodaki/unfollow (diff) | |
| parent | Add a missing semicolon (diff) | |
| download | sharkey-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.ts | 2 |
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, |