From ac4e40bf2478e3a2f63fde7e9e9662a99f141f7d Mon Sep 17 00:00:00 2001 From: dmissmann <37073203+dmissmann@users.noreply.github.com> Date: Mon, 29 Apr 2024 13:27:09 +0200 Subject: [PATCH] pass stdio identifiers (#405) this was somehow lost in refactoring --- ios/appservice/appservice.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/appservice/appservice.go b/ios/appservice/appservice.go index 76a49436..6147dbbc 100644 --- a/ios/appservice/appservice.go +++ b/ios/appservice/appservice.go @@ -108,7 +108,7 @@ func (c *Connection) LaunchAppWithStdIo(bundleId string, args []interface{}, env } func (c *Connection) launchApp(bundleId string, args []interface{}, env map[string]interface{}, options map[string]interface{}, terminateExisting bool, stdio map[string]any) (int, error) { - msg := buildAppLaunchPayload(c.deviceId, bundleId, args, env, options, terminateExisting, map[string]any{}) + msg := buildAppLaunchPayload(c.deviceId, bundleId, args, env, options, terminateExisting, stdio) err := c.conn.Send(msg, xpc.HeartbeatRequestFlag) if err != nil { return 0, fmt.Errorf("launchApp: failed to send launch-app request: %w", err)