Skip to content

Commit b55bf8c

Browse files
Ievgenii.MykhalevskyiIevgenii.Mykhalevskyi
authored andcommitted
fixed issue with running on multiple devices
1 parent 80cee13 commit b55bf8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Services/RunManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class RunManager {
3434
throw Error("Debug mode is not supported in run on multiple devices");
3535
}
3636

37-
const devices = (await this.env.multipleDeviceID).split(" |");
37+
const devices = (await this.env.multipleDeviceID).split(" |").map(deviceId => deviceId.substring("id=".length));
3838
if (devices == undefined || devices.length == 0)
3939
throw Error("Can not run on empty device");
4040
await DebugAdapterTracker.updateStatus(this.sessionID, "launching");

0 commit comments

Comments
 (0)