Skip to content

Commit 17120cd

Browse files
committed
Change the time it takes to show the reconnect notification
A normal reconnect time is ~5-15 seconds. Showing an error doesn't make sense when it is expected.
1 parent afc594c commit 17120cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/app/src/app/overmind/namespaces/live/liveMessageOperators.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ export const onConnectionLoss: Operator<LiveMessage> = mutate(
589589
message: 'We lost connection with the live server, reconnecting...',
590590
status: NotificationStatus.ERROR,
591591
});
592-
}, 10000);
592+
}, 30000);
593593

594594
state.live.reconnecting = true;
595595

0 commit comments

Comments
 (0)