Skip to content

Commit 5c57ea8

Browse files
committed
Fix crash on logger invocation
1 parent c635c9f commit 5c57ea8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/common/src/client/sync/stream/AbstractStreamingSyncImplementation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ The next upload iteration will be delayed.`);
414414
// Return a promise that resolves when the connection status is updated to indicate that we're connected.
415415
return new Promise<void>((resolve) => {
416416
const disposer = this.registerListener({
417-
statusChanged(status) {
417+
statusChanged: (status) => {
418418
if (status.dataFlowStatus.downloadError != null) {
419419
this.logger.warn('Initial connect attempt did not successfully connect to server');
420420
} else if (status.connecting) {

0 commit comments

Comments
 (0)