fix syntax error

This commit is contained in:
syuilo 2022-04-02 15:31:11 +09:00
parent 4fdfbfd5c4
commit 6b6464a659

View file

@ -85,7 +85,7 @@ export default class DeliverManager {
Process follower recipes first to avoid duplication when processing Process follower recipes first to avoid duplication when processing
direct recipes later. direct recipes later.
*/ */
if (this.recipes.some(r => isFollowers(r)) { if (this.recipes.some(r => isFollowers(r))) {
// followers deliver // followers deliver
// TODO: SELECT DISTINCT ON ("followerSharedInbox") "followerSharedInbox" みたいな問い合わせにすればよりパフォーマンス向上できそう // TODO: SELECT DISTINCT ON ("followerSharedInbox") "followerSharedInbox" みたいな問い合わせにすればよりパフォーマンス向上できそう
// ただ、sharedInboxがnullなリモートユーザーも稀におり、その対応ができなさそう // ただ、sharedInboxがnullなリモートユーザーも稀におり、その対応ができなさそう