fix(web): proper filtering for activity replies
This commit is contained in:
parent
b62b461305
commit
9c7f3f121a
1 changed files with 6 additions and 1 deletions
|
@ -51,7 +51,12 @@ pub fn TimelineRepliesRecursive(tl: Timeline, root: String) -> impl IntoView {
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.filter_map(|x| CACHE.get(&x))
|
.filter_map(|x| CACHE.get(&x))
|
||||||
.filter(|x| match x.object_type() {
|
.filter(|x| match x.object_type() {
|
||||||
Some(apb::ObjectType::Activity(apb::ActivityType::Create)) => x.object().get().map(|o| o.in_reply_to().id().map(|r| r == root).unwrap_or(false)).unwrap_or(false),
|
Some(apb::ObjectType::Activity(apb::ActivityType::Create)) => {
|
||||||
|
let Some(oid) = x.object().id() else { return false; };
|
||||||
|
let Some(object) = CACHE.get(&oid) else { return false; };
|
||||||
|
let Some(reply) = object.in_reply_to().id() else { return false; };
|
||||||
|
reply == root
|
||||||
|
},
|
||||||
Some(apb::ObjectType::Activity(_)) => x.object().id().map(|o| o == root).unwrap_or(false),
|
Some(apb::ObjectType::Activity(_)) => x.object().id().map(|o| o == root).unwrap_or(false),
|
||||||
_ => x.in_reply_to().id().map(|r| r == root).unwrap_or(false),
|
_ => x.in_reply_to().id().map(|r| r == root).unwrap_or(false),
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue