Currently, we fall back to threadInfo.creationTime in cases where none of the messages return a concrete time.
I think that behavior isn't great. It tends to happen when we only have a single most recent message for a given thin thread, but in those cases threadInfo.creationTime can be way earlier than the recent messages.
This diff changes the behavior so that if none of the messages return a concrete time, we'll fall back to the most recent message timestamp instead. We'll only use threadInfo.creationTime if we have no alternatives.
Depends on D14493