WofWca
WofWca
Sorry for such a late response. You asked a tough question. > if there's anything I can do to incentivize you to review future pull-requests I don't think there is...
Idk idk. I heard specifying actual file path is the norm of ES6 imports.
Alright, looks like it's your MR now XD
Hey! So, the extension seems to be working alright on Manifest V3, it's only tests (i.e. non-production code) that are missing? Am I reading this correctly?
I can confirm that the consumption remains high even when "Only when charging" id toggled on for the Kindness mode.
I believe it's possible, though you have to type the new contact's address in the search of the "Add Member" dialog, same as with the "New Chat" dialog. Please verify...
Also see * https://codeberg.org/webxdc/editor/commit/9d56ab4167ad9d72f79baecde50401dc036bc0dd * https://github.com/webxdc/webxdc-test/commit/4add6f73af6b526028b20c3a9ed607210068510e Also the correct code for the workaround you suggested would be ```javascript function sendUpdateAndPreventCloseUntilSent(e) { webxdc.sendUpdate({ payload: 'bar' }, '').then(() => { window.removeEventListener('beforeunload', sendUpdateAndPreventCloseUntilSent);...
Something notable. I'm trying https://github.com/webxdc/webxdc-test/commit/4add6f73af6b526028b20c3a9ed607210068510e, and it appears that `sendUpdate` works inside of `beforeunload` even without `event.preventDefault()`.  So the workaround would be to add a `beforeunload` listener besides the...
I think you're mixing up `beforeunload` and `visibilitychange`. It is `beforeunload` that is unreliable, and `visibilitychange` that is encouraged. If you try the webxdc-test app on Andoid you'll see that...
I'm sorry, I still don't get your idea. Are you suggesting a workaround? How is it better than mine? Can you show some code?