diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-04-03 17:24:36 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-04-03 17:24:36 +0900 |
| commit | ec629c4d8d77f74660bc84727374bca04830b8ca (patch) | |
| tree | 90ce1173d49683a3f0e6f00cccaf2bdb2b3c9fd6 /src | |
| parent | Add createdAt property (diff) | |
| parent | Merge pull request #1383 from akihikodaki/unfollow (diff) | |
| download | sharkey-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.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, |