fix syntax error
This commit is contained in:
parent
4fdfbfd5c4
commit
6b6464a659
|
@ -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なリモートユーザーも稀におり、その対応ができなさそう?
|
||||||
|
|
Loading…
Reference in New Issue