From d9256a603cbe057455c5b9ea78fa48c5c550ef2c Mon Sep 17 00:00:00 2001 From: Cyborus Date: Sat, 10 Aug 2024 17:08:48 -0400 Subject: [PATCH] fix: application settings page url should only be `https` --- src/auth.rs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/auth.rs b/src/auth.rs index 072dc30..44cb20c 100644 --- a/src/auth.rs +++ b/src/auth.rs @@ -35,12 +35,9 @@ impl AuthCommand { oauth_login(keys, host_url, client_id).await?; } else { let host_domain = host_url.host_str().ok_or_eyre("invalid host")?; - let host_path = host_url.path(); - let mut applications_url = host_url.clone(); - applications_url - .path_segments_mut() - .map_err(|_| eyre::eyre!("invalid url"))? - .extend(["user", "settings", "applications"]); + let host_path = host_url.path().strip_suffix("/").unwrap_or(host_url.path()); + let applications_url = + format!("https://{host_domain}{host_path}/user/settings/applications"); println!("{host_domain}{host_path} doesn't support easy login"); println!();