fix: application settings page url should only be https

This commit is contained in:
Cyborus 2024-08-10 17:08:48 -04:00
parent b3c242d8c5
commit d9256a603c
No known key found for this signature in database

View file

@ -35,12 +35,9 @@ impl AuthCommand {
oauth_login(keys, host_url, client_id).await?; oauth_login(keys, host_url, client_id).await?;
} else { } else {
let host_domain = host_url.host_str().ok_or_eyre("invalid host")?; let host_domain = host_url.host_str().ok_or_eyre("invalid host")?;
let host_path = host_url.path(); let host_path = host_url.path().strip_suffix("/").unwrap_or(host_url.path());
let mut applications_url = host_url.clone(); let applications_url =
applications_url format!("https://{host_domain}{host_path}/user/settings/applications");
.path_segments_mut()
.map_err(|_| eyre::eyre!("invalid url"))?
.extend(["user", "settings", "applications"]);
println!("{host_domain}{host_path} doesn't support easy login"); println!("{host_domain}{host_path} doesn't support easy login");
println!(); println!();