Add back semicolon

This commit is contained in:
Dessalines 2024-02-29 10:07:20 -05:00
parent bdfa8405f5
commit b1ec7fd4a7
1 changed files with 1 additions and 1 deletions

View File

@ -421,7 +421,7 @@ fn queries<'a>() -> Queries<
// Do not hide read posts when it is a user profile view
// Or, only hide read posts on non-profile views
if let (None, Some(person_id)) = (options.creator_id, my_person_id) {
query = query.filter(not(is_read(person_id)))
query = query.filter(not(is_read(person_id)));
}
}