Martin 2bam
Martin 2bam
I found [here ](https://github.com/commandlineparser/commandline/issues/290) that you can workaround it if you make bools nullable, i.e. `bool?` instead of `bool`. It's weird and unexpected, and clearly a recurring issue. It should...
After further investigation, it seems at some point `AsyncWebSocketClient::_onAck` stops getting called. And as messages are never flushed control pings never get sent neither (finished=0) so they never get an...
This is excellent, thanks Rubén. You published it just in time for something I needed. ¡Moitas grazas! I ran into some issues probably due to embedding quickjs through [quickjspp](https://github.com/ftk/quickjspp) instead...
I had some time today and I figured out the issue, `get_full_func_name` can return `JS_ATOM_NULL` (`0`), passed on to `JS_AtomToCString` at `profile_function_start/end` which in both cases won't null check (it...