launch: update openclaw channel message (#15463)

This commit is contained in:
Parth Sareen
2026-04-09 15:20:30 -07:00
committed by GitHub
parent 2a94f03823
commit 80d3744c5d
2 changed files with 2 additions and 2 deletions

View File

@@ -193,7 +193,7 @@ func (c *Openclaw) runChannelSetupPreflight(bin string) error {
}
fmt.Fprintf(os.Stderr, "\nYour assistant can message you on WhatsApp, Telegram, Discord, and more.\n\n")
ok, err := ConfirmPromptWithOptions("Connect a messaging app now?", ConfirmOptions{
ok, err := ConfirmPromptWithOptions("Connect a channel (messaging app) now?", ConfirmOptions{
YesLabel: "Yes",
NoLabel: "Set up later",
})

View File

@@ -143,7 +143,7 @@ fi
oldConfirmPrompt := DefaultConfirmPrompt
DefaultConfirmPrompt = func(prompt string, options ConfirmOptions) (bool, error) {
promptCount++
if prompt != "Connect a messaging app now?" {
if prompt != "Connect a channel (messaging app) now?" {
t.Fatalf("unexpected prompt: %q", prompt)
}
return true, nil