Skip to content

Commit edd7c8e

Browse files
authored
[codex] fix iOS TestFlight release archive (#84255)
Merged via squash. Prepared head SHA: c59a81a Co-authored-by: ngutman <1540134+ngutman@users.noreply.github.com> Co-authored-by: ngutman <1540134+ngutman@users.noreply.github.com> Reviewed-by: @ngutman
1 parent 9b97e1e commit edd7c8e

4 files changed

Lines changed: 4 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Docs: https://docs.openclaw.ai
3131
- WhatsApp: drain pending outbound deliveries on a 30s periodic timer in addition to the reconnect handler, so messages enqueued while the provider is already connected no longer wait for the next reconnect to send. (#79083) Thanks @Oviemudiaga.
3232
- CLI/TUI: include gateway plugin slash commands in TUI autocomplete, so connected sessions can suggest plugin-owned commands exposed by the running Gateway. (#83640) Thanks @se7en-agent.
3333
- Gateway/mobile: restore QR setup-code handoff of bounded operator tokens for iOS and Android onboarding while keeping admin and pairing scopes out of bootstrap. (#83684) Thanks @ngutman.
34+
- iOS: repair Release archive compilation for the TestFlight build. (#84255) Thanks @ngutman.
3435

3536
## 2026.5.19
3637

apps/ios/Sources/Onboarding/GatewayOnboardingReset.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import Foundation
22
import OpenClawKit
33

44
enum GatewayOnboardingReset {
5+
@MainActor
56
static func reset(
67
appModel: NodeAppModel,
78
instanceId: String,

apps/ios/Sources/Onboarding/OnboardingWizardView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1017,7 +1017,7 @@ struct OnboardingWizardView: View {
10171017

10181018
private func gatewayProblemPrimaryActionTitle(_ problem: GatewayConnectionProblem) -> String {
10191019
if problem.suggestsOnboardingReset { return "Scan QR again" }
1020-
problem.canTrustRotatedCertificate ? "Trust certificate" : "Retry connection"
1020+
return problem.canTrustRotatedCertificate ? "Trust certificate" : "Retry connection"
10211021
}
10221022

10231023
private func handleGatewayProblemPrimaryAction(_ problem: GatewayConnectionProblem) async {

apps/ios/Sources/Settings/SettingsTab.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1058,7 +1058,7 @@ struct SettingsTab: View {
10581058

10591059
private func gatewayProblemPrimaryActionTitle(_ problem: GatewayConnectionProblem) -> String {
10601060
if problem.suggestsOnboardingReset { return "Reset onboarding" }
1061-
problem.canTrustRotatedCertificate ? "Trust certificate" : "Retry connection"
1061+
return problem.canTrustRotatedCertificate ? "Trust certificate" : "Retry connection"
10621062
}
10631063

10641064
private func handleGatewayProblemPrimaryAction(_ problem: GatewayConnectionProblem) async {

0 commit comments

Comments
 (0)