Skip to content

Commit 3a5e711

Browse files
committed
Don't initialize with the awaitSend blocker to let messages through when presence is not done yet
1 parent c003e82 commit 3a5e711

File tree

1 file changed

+1
-1
lines changed
  • packages/app/src/app/overmind/effects/live

1 file changed

+1
-1
lines changed

packages/app/src/app/overmind/effects/live/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class Live {
7070
we use a blocker to just hold the sending of the messages until an additional
7171
connection enters
7272
*/
73-
private awaitSend: Blocker<void> | null = blocker<void>();
73+
private awaitSend: Blocker<void> | null = null;
7474
private presence: Presence;
7575
private provideJwtToken: () => string;
7676
private onOperationError: (payload: {

0 commit comments

Comments
 (0)