summaryrefslogtreecommitdiff
path: root/packages/backend/src/core/UserSuspendService.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/backend/src/core/UserSuspendService.ts')
-rw-r--r--packages/backend/src/core/UserSuspendService.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/backend/src/core/UserSuspendService.ts b/packages/backend/src/core/UserSuspendService.ts
index 02903a0590..d00bb89c76 100644
--- a/packages/backend/src/core/UserSuspendService.ts
+++ b/packages/backend/src/core/UserSuspendService.ts
@@ -54,7 +54,7 @@ export class UserSuspendService {
}
for (const inbox of queue) {
- this.queueService.deliver(user, content, inbox);
+ this.queueService.deliver(user, content, inbox, true);
}
}
}
@@ -84,7 +84,7 @@ export class UserSuspendService {
}
for (const inbox of queue) {
- this.queueService.deliver(user as any, content, inbox);
+ this.queueService.deliver(user as any, content, inbox, true);
}
}
}