Merge pull request #52 from jeystaats/patch-1

Multiple arguments added for emitting to store
pull/53/head
Metin Seylan 7 years ago committed by GitHub
commit d44a480584

@ -21,7 +21,7 @@ export default class{
this.Socket.onevent = (packet) => {
Emitter.emit(packet.data[0], packet.data[1]);
if(this.store) this.passToStore('SOCKET_'+packet.data[0], packet.data[1])
if(this.store) this.passToStore('SOCKET_'+packet.data[0], [ ...packet.data.slice(1)])
};
let _this = this;

Loading…
Cancel
Save