Allow an hour of time difference with offline messages

This commit is contained in:
JustArchi
2016-09-09 02:50:13 +02:00
parent e6d4304ca1
commit f2a2f93273

View File

@@ -1851,7 +1851,7 @@ namespace ArchiSteamFarm {
}
// If message is too old, return
if (DateTime.UtcNow.Subtract(lastMessage.Timestamp).TotalMinutes > 1) {
if (DateTime.UtcNow.Subtract(lastMessage.Timestamp).TotalHours > 1) {
return;
}