You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have used abandonware/bleno in my electron app. Every time I right click on the app and click quit option, app is crashing. ble-crash.txt
To investigate this, I have removed stateChange event subscription and app is no more crashing.
My code to subscribe on stateChange event is bleno.on('stateChange', (state) => { console.log('ble state changed to:', state); });
When I removed this portion, the app is no more crashing. But then another issue occurs: ble state never changes from unknown, the state remains unknown always. That's why I can't do anything with ble.
The text was updated successfully, but these errors were encountered:
I have used
abandonware/bleno
in my electron app. Every time I right click on the app and click quit option, app is crashing.ble-crash.txt
To investigate this, I have removed
stateChange
event subscription and app is no more crashing.My code to subscribe on
stateChange
event isbleno.on('stateChange', (state) => { console.log('ble state changed to:', state); });
When I removed this portion, the app is no more crashing. But then another issue occurs: ble state never changes from
unknown
, the state remainsunknown
always. That's why I can't do anything with ble.The text was updated successfully, but these errors were encountered: