Fix: Block delivery (#9397)
* Fix: Block delivery * Fix: Block delivery -
This commit is contained in:
parent
d106fb39ab
commit
50e3839b60
1 changed files with 11 additions and 5 deletions
|
@ -169,6 +169,12 @@ export class UserBlockingService {
|
||||||
const content = this.apRendererService.renderActivity(this.apRendererService.renderUndo(this.apRendererService.renderFollow(follower, followee), follower));
|
const content = this.apRendererService.renderActivity(this.apRendererService.renderUndo(this.apRendererService.renderFollow(follower, followee), follower));
|
||||||
this.queueService.deliver(follower, content, followee.inbox);
|
this.queueService.deliver(follower, content, followee.inbox);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// リモートからフォローをされていたらRejectFollow送信
|
||||||
|
if (this.userEntityService.isLocalUser(followee) && this.userEntityService.isRemoteUser(follower)) {
|
||||||
|
const content = this.apRendererService.renderActivity(this.apRendererService.renderReject(this.apRendererService.renderFollow(follower, followee), followee));
|
||||||
|
this.queueService.deliver(followee, content, follower.inbox);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@bindThis
|
@bindThis
|
||||||
|
|
Loading…
Reference in a new issue