should type what I mean ;)

This commit is contained in:
ralf 2024-01-29 14:12:41 +02:00
parent fb6d64a8ed
commit 659b18b362

View File

@ -976,7 +976,7 @@ class Import
return false;
}
// check current time <= time of first run today (frequency is in hours)
return time() <= mktime(ceil($frequency), round((60*$frequency)%60), 60); // 60 seconds grace time
return time() <= mktime(floor($frequency), round((60*$frequency)%60), 60); // 60 seconds grace time
}
/**