mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-21 07:56:16 -04:00
Use only xhr polling
This commit is contained in:
parent
58c50302f1
commit
fb0968d020
1 changed files with 4 additions and 0 deletions
|
@ -153,6 +153,10 @@ async.waterfall([
|
|||
//init socket.io and redirect all requests to the MessageHandler
|
||||
var io = socketio.listen(app);
|
||||
|
||||
//this is only a workaround to ensure it works with all browers behind a proxy
|
||||
//we should remove this when the new socket.io version is more stable
|
||||
io.set('transports', ['xhr-polling']);
|
||||
|
||||
var padMessageHandler = require("./PadMessageHandler");
|
||||
var timesliderMessageHandler = require("./TimesliderMessageHandler");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue