Skip to content

Commit ac4e40b

Browse files
authored
pass stdio identifiers (danielpaulus#405)
this was somehow lost in refactoring
1 parent 89f4807 commit ac4e40b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ios/appservice/appservice.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ func (c *Connection) LaunchAppWithStdIo(bundleId string, args []interface{}, env
108108
}
109109

110110
func (c *Connection) launchApp(bundleId string, args []interface{}, env map[string]interface{}, options map[string]interface{}, terminateExisting bool, stdio map[string]any) (int, error) {
111-
msg := buildAppLaunchPayload(c.deviceId, bundleId, args, env, options, terminateExisting, map[string]any{})
111+
msg := buildAppLaunchPayload(c.deviceId, bundleId, args, env, options, terminateExisting, stdio)
112112
err := c.conn.Send(msg, xpc.HeartbeatRequestFlag)
113113
if err != nil {
114114
return 0, fmt.Errorf("launchApp: failed to send launch-app request: %w", err)

0 commit comments

Comments
 (0)