mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-02 03:55:55 +01:00
hardcoding the exclusion of 'htmlfile' from web sockets, since it seems to
cause NodeBB to fail
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
|
||||
var SocketIO = require('socket.io').listen(global.server, { log:false }),
|
||||
var SocketIO = require('socket.io').listen(global.server, {
|
||||
log: false,
|
||||
transports: ['websocket', 'xhr-polling', 'jsonp-polling', 'flashsocket']
|
||||
}),
|
||||
cookie = require('cookie'),
|
||||
express = require('express'),
|
||||
user = require('./user.js'),
|
||||
|
||||
Reference in New Issue
Block a user