fix: overflow

This commit is contained in:
Timo Kösters 2021-04-11 21:35:17 +02:00
parent a8231eef25
commit a961732f5f
No known key found for this signature in database
GPG key ID: 24DA7517711A2BA4

View file

@ -382,7 +382,7 @@ impl RoomEdus {
.ok()?,
))
})
.take_while(|(_, timestamp)| current_timestamp - timestamp > 5 * 60_000)
.take_while(|(_, timestamp)| current_timestamp.saturating_sub(*timestamp) > 5 * 60_000)
// 5 Minutes
{
// Send new presence events to set the user offline