englercj / node-esl

FreeSWITCH ESL implementation for Node.js; implements the full Event Socket Library specified in: http://wiki.freeswitch.org/wiki/Esl
http://englercj.github.com/node-esl/
MIT License
170 stars 111 forks source link

Dubble Events #91

Closed vandykew closed 3 years ago

vandykew commented 3 years ago

I'm seeing an issue

When I subscribe to events like this

 call.on('esl::*::*::*', (evt) => {

                            console.log(evt.type)

                        });

Im see the each event twice, Has anyone else noticed this ?