mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
Fixing disconnect to handle different cases differently.
This commit is contained in:
parent
151789cbad
commit
65b05a9da4
2 changed files with 16 additions and 6 deletions
|
@ -73,14 +73,19 @@ class BLE extends JSONRPCWebSocket {
|
|||
* Close the websocket.
|
||||
*/
|
||||
disconnect () {
|
||||
if (this._ws.readyState !== this._ws.OPEN) return;
|
||||
if (this._ws.readyState === this._ws.OPEN) {
|
||||
this._ws.close();
|
||||
}
|
||||
|
||||
this._ws.close();
|
||||
this._connected = false;
|
||||
if (this._connected) {
|
||||
this._connected = false;
|
||||
}
|
||||
|
||||
if (this._discoverTimeoutID) {
|
||||
window.clearTimeout(this._discoverTimeoutID);
|
||||
}
|
||||
|
||||
// Sets connection status icon to orange
|
||||
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.
|
||||
*/
|
||||
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) {
|
||||
window.clearTimeout(this._discoverTimeoutID);
|
||||
}
|
||||
|
||||
// Sets connection status icon to orange
|
||||
this._runtime.emit(this._runtime.constructor.PERIPHERAL_DISCONNECTED);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue