fix: don't show deleted posts in repost

This commit is contained in:
trisua 2025-05-19 19:45:20 -04:00
parent 6fa273b9f5
commit 47124bcc71

View file

@ -157,6 +157,10 @@ impl DataManager {
Err(_) => return None, Err(_) => return None,
}; };
if x.is_deleted {
return None;
}
if ignore_users.contains(&x.owner) { if ignore_users.contains(&x.owner) {
return None; return None;
} }