Don't show hidden threads in Last update column

This commit is contained in:
David Hoppenbrouwers
2022-10-12 22:24:24 +02:00
parent e066a7c91e
commit 136d7aeceb

View File

@@ -19,7 +19,7 @@ class DB:
on t.thread_id = (
select tt.thread_id
from threads tt
where f.forum_id = tt.forum_id
where f.forum_id = tt.forum_id and not tt.hidden
order by update_time desc
limit 1
)