Hermann Höhne
Hermann Höhne
I encounter the problem, too. However, I suspect the reason to originate in the user management. My main user is "admin". I created a subordinate user "user1". It is not...
It looks like sqlite3 assumes some dynamic linking, but musl needs static linkage. I have no experience with musl whatsoever. [This article](https://www.yellowduck.be/posts/cross-compile-a-go-package-which-uses-sqlite3/) suggests adding `-ldflags "-linkmode external -extldflags -static"` to...
You can get some more information by running pidgin in the debugger: `gdb pidgin`. Enter `r` to start Pidgin, wait for the crash, then enter `bt` to obtain a backtrace...
That looks like stack corruption to me (especially the null address in frame). Maybe it is not the CGO options we need to change, but the final linker pass: cd...
Sorry but I am out of ideas. :( I will not install Alpine Linux to investigate this issue directly.
Does https://github.com/hoehermann/purple-gowhatsapp/tree/dev do anything for you?
Since I am not familiar with the musl environment, I have no idea. I am sorry.
Thank you very much for the report. It is good to have you on board for tests regarding bitlbee. With the qrcode-size set to 0, I am using a simple...
I had hoped the `PURPLE_MESSAGE_RECV` would solve the issue. I copied most of the code from the gowhatsapp variant. The whatsmeow version should be better in virtually every aspect –...
Thank you for testing. You are correct. The flow should be: 1. [loop in connect](https://github.com/hoehermann/purple-gowhatsapp/blob/686e996bfad4421451d5f56c1d3642302e33ce9c/src/go/login.go#L176) 2. [purple_display_qrcode](https://github.com/hoehermann/purple-gowhatsapp/blob/686e996bfad4421451d5f56c1d3642302e33ce9c/src/go/bridge.go#L109) 1. [gowhatsapp_process_message_bridge](https://github.com/hoehermann/purple-gowhatsapp/blob/686e996bfad4421451d5f56c1d3642302e33ce9c/src/c/bridge.c#L111) 2. [process_message_bridge](https://github.com/hoehermann/purple-gowhatsapp/blob/686e996bfad4421451d5f56c1d3642302e33ce9c/src/c/bridge.c#L86) 3. [gowhatsapp_process_message](https://github.com/hoehermann/purple-gowhatsapp/blob/686e996bfad4421451d5f56c1d3642302e33ce9c/src/c/process_message.c#L47) 4. [gowhatsapp_handle_qrcode](https://github.com/hoehermann/purple-gowhatsapp/blob/686e996bfad4421451d5f56c1d3642302e33ce9c/src/c/qrcode.c#L56) The bridge is a bit...