mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-20 07:35:05 -04:00
fix(socket.io): readd long polling
This commit is contained in:
parent
8b41eed8a6
commit
87d8b87855
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ const connect = (etherpadBaseUrl, namespace = '/', options = {}) => {
|
||||||
let socketOptions = {
|
let socketOptions = {
|
||||||
path: socketioUrl.pathname,
|
path: socketioUrl.pathname,
|
||||||
upgrade: true,
|
upgrade: true,
|
||||||
transports: ['websocket'],
|
transports: ['polling', 'websocket'],
|
||||||
};
|
};
|
||||||
socketOptions = Object.assign(options, socketOptions);
|
socketOptions = Object.assign(options, socketOptions);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue