Skip to content

Commit

Permalink
QFIX collaborators
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Sobolev <[email protected]>
  • Loading branch information
haiodo committed Feb 2, 2025
1 parent 1489649 commit c608dc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server-plugins/notification-resources/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1385,7 +1385,7 @@ async function updateCollaboratorDoc (

if (collabsInfo.added.length > 0) {
res.push(createPushCollaboratorsTx(control, tx.objectId, tx.objectClass, tx.objectSpace, collabsInfo.added))
res.push(...(await pushCollaboratorsToPublicSpace(control, doc, collabsInfo.added, cache)))
// res.push(...(await pushCollaboratorsToPublicSpace(control, doc, collabsInfo.added, cache)))
}

if (collabsInfo.removed.length > 0) {
Expand Down Expand Up @@ -1603,7 +1603,7 @@ async function updateCollaborators (

if (toAdd.length > 0) {
res.push(createPushCollaboratorsTx(control, objectId, objectClass, objectSpace, toAdd))
res.push(...(await pushCollaboratorsToPublicSpace(control, doc, toAdd, cache)))
// res.push(...(await pushCollaboratorsToPublicSpace(control, doc, toAdd, cache)))
}

if (removedCollaborators.length > 0) {
Expand Down

0 comments on commit c608dc5

Please sign in to comment.