Skip to content

Commit

Permalink
chore(js-sdk): cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
pshenmic committed Dec 24, 2024
1 parent 44df2e6 commit 5894a7f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ export default async function broadcast(
documents: {
create?: ExtendedDocument[],
replace?: ExtendedDocument[],
delete?: ExtendedDocument[],
delete?: ExtendedDocument[]
},
identity: any,
): Promise<any> {
this.logger.debug('[Document#broadcast] Broadcast documents', {
create: documents.create?.length || 0,
replace: documents.replace?.length || 0,
delete: documents.delete?.length || 0
delete: documents.delete?.length || 0,
});
await this.initialize();

Expand Down

0 comments on commit 5894a7f

Please sign in to comment.