a tool for shared writing and social publishing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove mutation batching

+1 -1
+1 -1
app/api/rpc/[command]/push.ts
··· 67 67 .select() 68 68 .from(permission_token_rights) 69 69 .where(eq(permission_token_rights.token, token.id)); 70 - for (let mutation of pushRequest.mutations.slice(0, 25)) { 70 + for (let mutation of pushRequest.mutations) { 71 71 let lastMutationID = clientGroup[mutation.clientID] || 0; 72 72 if (mutation.id <= lastMutationID) continue; 73 73 clientGroup[mutation.clientID] = mutation.id;