We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80cee13 commit b55bf8cCopy full SHA for b55bf8c
src/Services/RunManager.ts
@@ -34,7 +34,7 @@ export class RunManager {
34
throw Error("Debug mode is not supported in run on multiple devices");
35
}
36
37
- const devices = (await this.env.multipleDeviceID).split(" |");
+ const devices = (await this.env.multipleDeviceID).split(" |").map(deviceId => deviceId.substring("id=".length));
38
if (devices == undefined || devices.length == 0)
39
throw Error("Can not run on empty device");
40
await DebugAdapterTracker.updateStatus(this.sessionID, "launching");
0 commit comments