Skip to content

Commit dff067d

Browse files
author
Fatme
authored
Merge pull request #3609 from NativeScript/vladimirov/fix-ios-sim
fix: Unable to fast sync changes with iOS runtime 4.0.1 and earlier
2 parents e5665f2 + d1fca9b commit dff067d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/services/ios-debugger-port-service.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ export class IOSDebuggerPortService implements IIOSDebuggerPortService {
1515
public getPort(data: IIOSDebuggerPortInputData): Promise<number> {
1616
return new Promise((resolve, reject) => {
1717
if (!this.canStartLookingForDebuggerPort()) {
18-
return IOSDebuggerPortService.DEFAULT_PORT;
18+
resolve(IOSDebuggerPortService.DEFAULT_PORT);
19+
return;
1920
}
2021

2122
const key = `${data.deviceId}${data.appId}`;

0 commit comments

Comments
 (0)