Send actor in Undo Follow
This commit is contained in:
parent
68a7661f08
commit
a39aaf6eb1
3 changed files with 7 additions and 3 deletions
|
@ -56,7 +56,7 @@ export default async function(follower: IUser, followee: IUser) {
|
|||
}
|
||||
|
||||
if (isLocalUser(follower) && isRemoteUser(followee)) {
|
||||
const content = pack(renderUndo(renderFollow(follower, followee)));
|
||||
const content = pack(renderUndo(renderFollow(follower, followee), follower));
|
||||
deliver(follower, content, followee.inbox);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ import { publishUserStream } from '../../../stream';
|
|||
|
||||
export default async function(followee: IUser, follower: IUser) {
|
||||
if (isRemoteUser(followee)) {
|
||||
const content = pack(renderUndo(renderFollow(follower, followee)));
|
||||
const content = pack(renderUndo(renderFollow(follower, followee), follower));
|
||||
deliver(follower as ILocalUser, content, followee.inbox);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue