• update, i found a way around it, probably exposing a bug?

    i did the follwing to avoid duplicate appstart basically.

    E.on('init', startApp);
    startApp();
    

    and

    function startApp(){
        if(appStarted){
          return;
        }
    

    The "bug" that listeners are added twice is still there, but this avoids it.

About

Avatar for sfnk @sfnk started