forked from FoundKeyGang/FoundKey
remove redundant check
Whether the actor is suspended is already checked in the performOneActivity function and does not need to be checked here again since the actor is still the same as it was there.
This commit is contained in:
parent
2696c34f6c
commit
89fad52272
1 changed files with 0 additions and 4 deletions
|
@ -14,10 +14,6 @@ import { shouldBlockInstance } from '@/misc/should-block-instance.js';
|
|||
export default async function(resolver: Resolver, actor: IRemoteUser, activity: IAnnounce, targetUri: string): Promise<void> {
|
||||
const uri = getApId(activity);
|
||||
|
||||
if (actor.isSuspended) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Cancel if the announced from host is blocked.
|
||||
if (await shouldBlockInstance(extractDbHost(uri))) return;
|
||||
|
||||
|
|
Loading…
Reference in a new issue