fix: connection state

This commit is contained in:
DarkSky
2022-09-21 14:58:39 +08:00
parent ea207d299b
commit 124891b2b5
+1 -1
View File
@@ -118,7 +118,7 @@ export const getYjsProviders = (
// TODO: synced will also be triggered on reconnection after losing sync
// There needs to be an event mechanism to emit the synchronization state to the upper layer
ws.once('synced', () => resolve());
ws.once('lost-connection', () => resolve());
ws.once('lost-connection', () => reject());
ws.once('connection-error', () => reject());
ws.on('synced', () => instances.emitState('connected'));
ws.on('lost-connection', () =>