$myThread = $threadFinder
->whereOr([
['last_post_date', '>', $postDate],
],[
['last_post_date', '=', $postDate],
['last_post_id', '>', $lastPostId],
])
->where('node_id', $forumId)
->where('discussion_state', 'visible')
->where('discussion_type', '<>', 'redirect')
->setDefaultOrder(['last_post_date', 'ASC'], ['last_post_id', 'ASC'])
->fetchOne();
return $myThread;