From 344ef7526f83d29dd31b454ddad9def6dc41a340 Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Mon, 20 Jul 2026 13:29:37 -0600 Subject: [PATCH] feat: hint that browser 'paste code' pages can be ignored during callback capture --- src/client/oauth.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/client/oauth.rs b/src/client/oauth.rs index 8a8d7f4..634e18d 100644 --- a/src/client/oauth.rs +++ b/src/client/oauth.rs @@ -500,7 +500,10 @@ fn listen_for_oauth_callback(redirect_uri: &str) -> Result<(String, String)> { .ok_or_else(|| anyhow!("No port in redirect URI"))?; let path = url.path(); - println!("Waiting for OAuth callback on {redirect_uri} ...\n"); + println!("Waiting for OAuth callback on {redirect_uri} ..."); + println!( + "(If the browser shows a 'paste this code' page, ignore it — Coyote captures the callback automatically.)\n" + ); let listener = TcpListener::bind(format!("{host}:{port}"))?;