Browse Source

hopefully fix stuff for reals.

master
Gisle Aune 5 years ago
parent
commit
a8b30f2707
  1. 5
      src/drivers/iconsole.js

5
src/drivers/iconsole.js

@ -49,16 +49,17 @@ class IConsoleDriver {
await this.client.resume();
}
this.state === "started";
this.state = "started";
}
async pause() {
await this.client.pause();
this.state === "connected";
this.state = "connected";
}
async resume() {
await this.client.resume();
this.state = "started";
}
async stop() {

Loading…
Cancel
Save