mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-18 23:07:02 +08:00
feat(nbstore): use polling as ios websocket transport (#10001)
This commit is contained in:
@@ -158,7 +158,7 @@ class SocketManager {
|
||||
constructor(endpoint: string) {
|
||||
this.socketIOManager = new SocketIOManager(endpoint, {
|
||||
autoConnect: false,
|
||||
transports: ['websocket'],
|
||||
transports: [BUILD_CONFIG.isIOS ? 'polling' : 'websocket'],
|
||||
secure: new URL(endpoint).protocol === 'https:',
|
||||
// we will handle reconnection by ourselves
|
||||
reconnection: false,
|
||||
|
||||
Reference in New Issue
Block a user