Bump timestamp up to an hour

This commit is contained in:
Garth Vander Houwen 2025-05-13 06:40:50 -07:00
parent e2fbb2a26c
commit 8dfa7f5b14

View file

@ -34,7 +34,7 @@ extension MessageEntity {
func displayTimestamp(aboveMessage: MessageEntity?) -> Bool {
if let aboveMessage = aboveMessage {
return aboveMessage.timestamp.addingTimeInterval(900) < timestamp // 15 minutes
return aboveMessage.timestamp.addingTimeInterval(3600) < timestamp // 60 minutes
}
return false // First message will have no timestamp
}