Skip to content

Commit

Permalink
pass stdio identifiers (danielpaulus#405)
Browse files Browse the repository at this point in the history
this was somehow lost in refactoring
  • Loading branch information
dmissmann authored Apr 29, 2024
1 parent 89f4807 commit ac4e40b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/appservice/appservice.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit ac4e40b

Please sign in to comment.