fix(web): no fetch query for context
This commit is contained in:
parent
e63433b77b
commit
da68423a47
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ pub fn ObjectPage(tl: Timeline) -> impl IntoView {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
if let Ok(ctx) = obj.context().id() {
|
if let Ok(ctx) = obj.context().id() {
|
||||||
let tl_url = format!("{}/context/page", Uri::api(U::Object, ctx, true));
|
let tl_url = format!("{}/context/page", Uri::api(U::Object, ctx, false));
|
||||||
if !tl.next.get().starts_with(&tl_url) {
|
if !tl.next.get().starts_with(&tl_url) {
|
||||||
tl.reset(tl_url);
|
tl.reset(tl_url);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue