Skip to content

Commit d7fa930

Browse files
Fatme HavaluovaFatme Havaluova
authored andcommitted
Use correct function from postNotificationClient
1 parent 51f23c3 commit d7fa930

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/services/ios-debug-service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,14 +271,14 @@ class IOSDeviceDebugging {
271271
this.$logger.info("Got AppLaunching");
272272
this.proxyDebuggingTraffic();
273273
var waitForDebuggerMessage = notification.waitForDebug(this.bundleId);
274-
this.$notificationProxyClient.postNotification(waitForDebuggerMessage);
274+
this.$notificationProxyClient.postNotificationAndAttachForData(waitForDebuggerMessage);
275275
});
276276
}
277277

278278
public debugRunningApplication() {
279279
this.proxyDebuggingTraffic();
280280
var attachRequestMessage = notification.attachRequest(this.bundleId);
281-
this.$notificationProxyClient.postNotification(attachRequestMessage);
281+
this.$notificationProxyClient.postNotificationAndAttachForData(attachRequestMessage);
282282
}
283283

284284
private proxyDebuggingTraffic(): void {

0 commit comments

Comments
 (0)