Rename variable

This commit is contained in:
Felix Ableitner 2025-01-03 15:57:02 +01:00
parent e9d27f2840
commit 6de73f37ca

View file

@ -318,7 +318,7 @@ fn queries<'a>() -> Queries<
.then_order_by(post_actions::saved.desc());
}
if options.read_only.unwrap_or_default() {
if o.read_only.unwrap_or_default() {
query = query
.filter(post_actions::read.is_not_null())
.then_order_by(post_actions::read.desc())