We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e5665f2 + d1fca9b commit dff067dCopy full SHA for dff067d
lib/services/ios-debugger-port-service.ts
@@ -15,7 +15,8 @@ export class IOSDebuggerPortService implements IIOSDebuggerPortService {
15
public getPort(data: IIOSDebuggerPortInputData): Promise<number> {
16
return new Promise((resolve, reject) => {
17
if (!this.canStartLookingForDebuggerPort()) {
18
- return IOSDebuggerPortService.DEFAULT_PORT;
+ resolve(IOSDebuggerPortService.DEFAULT_PORT);
19
+ return;
20
}
21
22
const key = `${data.deviceId}${data.appId}`;
0 commit comments