diff options
| author | Akihiko Odaki <nekomanma@pixiv.co.jp> | 2018-04-03 17:21:59 +0900 |
|---|---|---|
| committer | Akihiko Odaki <nekomanma@pixiv.co.jp> | 2018-04-03 17:21:59 +0900 |
| commit | 30614a377984ad7f459ba4d1f707bc2c38fbc192 (patch) | |
| tree | 0d3fa1913092e0c0634e0db73fadc48cd67d80d5 /src | |
| parent | Implement remote account unfollow (diff) | |
| download | misskey-30614a377984ad7f459ba4d1f707bc2c38fbc192.tar.gz misskey-30614a377984ad7f459ba4d1f707bc2c38fbc192.tar.bz2 misskey-30614a377984ad7f459ba4d1f707bc2c38fbc192.zip | |
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, |