[BUG FIX] Don't append host part twice to remote interact URI
This commit is contained in:
parent
b2e7664339
commit
703328601c
@ -134,16 +134,7 @@ pub fn follow_not_connected(
|
|||||||
if let Some(remote_form) = remote_form {
|
if let Some(remote_form) = remote_form {
|
||||||
if let Some(uri) = User::fetch_remote_interact_uri(&remote_form)
|
if let Some(uri) = User::fetch_remote_interact_uri(&remote_form)
|
||||||
.ok()
|
.ok()
|
||||||
.and_then(|uri| {
|
.and_then(|uri| Some(uri.replace("{uri}", &target.acct_authority(&conn).ok()?)))
|
||||||
Some(uri.replace(
|
|
||||||
"{uri}",
|
|
||||||
&format!(
|
|
||||||
"{}@{}",
|
|
||||||
target.fqn,
|
|
||||||
target.get_instance(&conn).ok()?.public_domain
|
|
||||||
),
|
|
||||||
))
|
|
||||||
})
|
|
||||||
{
|
{
|
||||||
Ok(Redirect::to(uri).into())
|
Ok(Redirect::to(uri).into())
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user