hack: temporarily disable socketio.

This commit is contained in:
Christopher Jeffrey 2016-04-08 16:04:43 -07:00
parent 8418cdad23
commit 9e830c4666
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD
2 changed files with 2 additions and 0 deletions

View File

@ -39,6 +39,7 @@ Client.prototype._init = function _init() {
var self = this;
var io;
return;
try {
io = require('socket.io');
} catch (e) {

View File

@ -67,6 +67,7 @@ HTTPServer.prototype._initIO = function _initIO() {
var self = this;
var io;
return;
try {
io = require('socket.io');
} catch (e) {