Fix: propagate event to Socket

This commit is contained in:
Nicolas Coden 2017-06-17 18:44:10 +02:00
parent d44a480584
commit b0993481f7

View file

@ -18,7 +18,10 @@ export default class{
}
onEvent(){
var super_onevent = this.Socket.onevent;
this.Socket.onevent = (packet) => {
super_onevent.call(this.Socket, packet);
Emitter.emit(packet.data[0], packet.data[1]);
if(this.store) this.passToStore('SOCKET_'+packet.data[0], [ ...packet.data.slice(1)])