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}"))?;