diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-02 00:15:17 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-02 00:15:17 +0900 |
| commit | 484d17f53f26ff3e8961d86f03ef94f62f8f62ed (patch) | |
| tree | 5d010a52387c3bedf69bdee4ab872c39c25e5bd0 /src/remote/activitypub/kernel/undo | |
| parent | Merge branch 'master' into locked-account (diff) | |
| download | sharkey-484d17f53f26ff3e8961d86f03ef94f62f8f62ed.tar.gz sharkey-484d17f53f26ff3e8961d86f03ef94f62f8f62ed.tar.bz2 sharkey-484d17f53f26ff3e8961d86f03ef94f62f8f62ed.zip | |
wip
Diffstat (limited to 'src/remote/activitypub/kernel/undo')
| -rw-r--r-- | src/remote/activitypub/kernel/undo/follow.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote/activitypub/kernel/undo/follow.ts b/src/remote/activitypub/kernel/undo/follow.ts index c0b10c1898..763d5723c4 100644 --- a/src/remote/activitypub/kernel/undo/follow.ts +++ b/src/remote/activitypub/kernel/undo/follow.ts @@ -23,5 +23,5 @@ export default async (actor: IRemoteUser, activity: IFollow): Promise<void> => { throw new Error('フォロー解除しようとしているユーザーはローカルユーザーではありません'); } - await unfollow(actor, followee, activity); + await unfollow(actor, followee); }; |