You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
while broadcasting to all events on *, this error came up, also similar to #7
/opt/connector/node_modules/event-pubsub/es6.js:79
handler.apply(this, type, args);
^
TypeError: CreateListFromArrayLike called on non-object
at Client.emit$ (/opt/connector/node_modules/event-pubsub/es6.js:79:21)
at Client.emit (/opt/connector/node_modules/event-pubsub/es6.js:58:25)
at Socket.connectionMade (/opt/connector/node_modules/node-ipc/dao/client.js:140:20)
at emitNone (events.js:91:20)
at Socket.emit (events.js:185:7)
at PipeConnectWrap.afterConnect [as oncomplete] (net.js:1067:10)
this could be fixed with
in es6.js replace line 78
handler.apply(this,type,args);
with
args.unshift(type)handler.apply(this,args);
The text was updated successfully, but these errors were encountered:
mrvini
changed the title
Error in emit *
CreateListFromArrayLike on non-object error
Oct 6, 2016
while broadcasting to all events on *, this error came up, also similar to #7
/opt/connector/node_modules/event-pubsub/es6.js:79 handler.apply(this, type, args); ^ TypeError: CreateListFromArrayLike called on non-object at Client.emit$ (/opt/connector/node_modules/event-pubsub/es6.js:79:21) at Client.emit (/opt/connector/node_modules/event-pubsub/es6.js:58:25) at Socket.connectionMade (/opt/connector/node_modules/node-ipc/dao/client.js:140:20) at emitNone (events.js:91:20) at Socket.emit (events.js:185:7) at PipeConnectWrap.afterConnect [as oncomplete] (net.js:1067:10)
this could be fixed with
in es6.js replace line 78
with
The text was updated successfully, but these errors were encountered: