[BUG FIX] Don't append host part twice to remote interact URI

This commit is contained in:
Kitaiti Makoto 2021-02-14 22:15:32 +09:00
parent b2e7664339
commit 703328601c
1 changed files with 1 additions and 10 deletions

View File

@ -134,16 +134,7 @@ pub fn follow_not_connected(
if let Some(remote_form) = remote_form {
if let Some(uri) = User::fetch_remote_interact_uri(&remote_form)
.ok()
.and_then(|uri| {
Some(uri.replace(
"{uri}",
&format!(
"{}@{}",
target.fqn,
target.get_instance(&conn).ok()?.public_domain
),
))
})
.and_then(|uri| Some(uri.replace("{uri}", &target.acct_authority(&conn).ok()?)))
{
Ok(Redirect::to(uri).into())
} else {