summaryrefslogtreecommitdiff
path: root/packages/backend/src/remote/activitypub
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-04-02 15:31:11 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-04-02 15:31:11 +0900
commit6b6464a6598414eec8bbffac12b3ebfb4ec30830 (patch)
treea4436224b4eefa7d1f54f1ca7cbd18bc0545085a /packages/backend/src/remote/activitypub
parentNew Crowdin updates (#8409) (diff)
downloadsharkey-6b6464a6598414eec8bbffac12b3ebfb4ec30830.tar.gz
sharkey-6b6464a6598414eec8bbffac12b3ebfb4ec30830.tar.bz2
sharkey-6b6464a6598414eec8bbffac12b3ebfb4ec30830.zip
fix syntax error
Diffstat (limited to 'packages/backend/src/remote/activitypub')
-rw-r--r--packages/backend/src/remote/activitypub/deliver-manager.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/backend/src/remote/activitypub/deliver-manager.ts b/packages/backend/src/remote/activitypub/deliver-manager.ts
index c63437116b..f95f64f77c 100644
--- a/packages/backend/src/remote/activitypub/deliver-manager.ts
+++ b/packages/backend/src/remote/activitypub/deliver-manager.ts
@@ -85,7 +85,7 @@ export default class DeliverManager {
Process follower recipes first to avoid duplication when processing
direct recipes later.
*/
- if (this.recipes.some(r => isFollowers(r)) {
+ if (this.recipes.some(r => isFollowers(r))) {
// followers deliver
// TODO: SELECT DISTINCT ON ("followerSharedInbox") "followerSharedInbox" みたいな問い合わせにすればよりパフォーマンス向上できそう
// ただ、sharedInboxがnullなリモートユーザーも稀におり、その対応ができなさそう?