fix(web): hashtags timeline needs ending /page

This commit is contained in:
əlemi 2024-07-04 03:24:18 +02:00
parent f97845d81e
commit ca1b3079d4
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -49,7 +49,7 @@ pub fn HashtagFeed(tl: Timeline) -> impl IntoView {
.to_string(); .to_string();
let new_tag = params.get().ok().and_then(|x| x.id).unwrap_or_default(); let new_tag = params.get().ok().and_then(|x| x.id).unwrap_or_default();
if new_tag != current_tag { if new_tag != current_tag {
tl.reset(Some(Uri::api(U::Hashtag, &new_tag, false))); tl.reset(Some(Uri::api(U::Hashtag, &format!("{new_tag}/page"), false)));
} }
}).track(); }).track();