From 71db5a8a810296955430c9f048eae6d207504e3c Mon Sep 17 00:00:00 2001 From: logsol Date: Sun, 28 Jun 2015 19:11:37 +0200 Subject: [PATCH] removes flashsocket - fixes #117 --- app/Bootstrap/Socket.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Bootstrap/Socket.js b/app/Bootstrap/Socket.js index 3765c0b..128a70f 100755 --- a/app/Bootstrap/Socket.js +++ b/app/Bootstrap/Socket.js @@ -22,10 +22,12 @@ function (io) { var self = this; this.socket.configure('development', function () { this.set('log level', options.logLevel); + this.set('transports', ['websocket']); }); this.socket.configure('production', function () { this.set('log level', options.logLevel); + this.set('transports', ['websocket']); }); this.socket.on('connection', function (user) {