Gordon Buhler

Results 2 comments of Gordon Buhler

I fixed this by adjusting what we add to the `responseHandlers` map [here](https://github.com/smblott-github/chromix-too/blob/master/server.coffee#L41) like this: ``` responseHandlers[myClientId] = function(...args) { sock.write.call(sock, ...args); sock.end.call(sock); }; ``` And then adding a listener...