mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-01-11 10:39:56 -05:00
Merge pull request #2055 from evhan55/extensions/disconnect-fixes
Fix hardware extension disconnect behavior
This commit is contained in:
commit
35d255319b
2 changed files with 16 additions and 6 deletions
|
@ -73,14 +73,19 @@ class BLE extends JSONRPCWebSocket {
|
||||||
* Close the websocket.
|
* Close the websocket.
|
||||||
*/
|
*/
|
||||||
disconnect () {
|
disconnect () {
|
||||||
if (this._ws.readyState !== this._ws.OPEN) return;
|
if (this._ws.readyState === this._ws.OPEN) {
|
||||||
|
this._ws.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this._connected) {
|
||||||
|
this._connected = false;
|
||||||
|
}
|
||||||
|
|
||||||
this._ws.close();
|
|
||||||
this._connected = false;
|
|
||||||
if (this._discoverTimeoutID) {
|
if (this._discoverTimeoutID) {
|
||||||
window.clearTimeout(this._discoverTimeoutID);
|
window.clearTimeout(this._discoverTimeoutID);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Sets connection status icon to orange
|
||||||
this._runtime.emit(this._runtime.constructor.PERIPHERAL_DISCONNECTED);
|
this._runtime.emit(this._runtime.constructor.PERIPHERAL_DISCONNECTED);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
11
src/io/bt.js
11
src/io/bt.js
|
@ -75,14 +75,19 @@ class BT extends JSONRPCWebSocket {
|
||||||
* Close the websocket.
|
* Close the websocket.
|
||||||
*/
|
*/
|
||||||
disconnect () {
|
disconnect () {
|
||||||
if (this._ws.readyState !== this._ws.OPEN) return;
|
if (this._ws.readyState === this._ws.OPEN) {
|
||||||
|
this._ws.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this._connected) {
|
||||||
|
this._connected = false;
|
||||||
|
}
|
||||||
|
|
||||||
this._ws.close();
|
|
||||||
this._connected = false;
|
|
||||||
if (this._discoverTimeoutID) {
|
if (this._discoverTimeoutID) {
|
||||||
window.clearTimeout(this._discoverTimeoutID);
|
window.clearTimeout(this._discoverTimeoutID);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Sets connection status icon to orange
|
||||||
this._runtime.emit(this._runtime.constructor.PERIPHERAL_DISCONNECTED);
|
this._runtime.emit(this._runtime.constructor.PERIPHERAL_DISCONNECTED);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue