1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 01:35:54 +00:00

try to send digests within 2 hours of preferred time only

This commit is contained in:
Andrew Dolgov
2012-01-31 15:52:33 +04:00
parent 76c843a9ba
commit 1b9b19af0f
2 changed files with 12 additions and 1 deletions

View File

@@ -2706,7 +2706,9 @@
if (get_pref($link, 'DIGEST_ENABLE', $line['id'], false)) {
$preferred_ts = strtotime(get_pref($link, 'DIGEST_PREFERRED_TIME', $line['id'], '00:00'));
if ($preferred_ts && time() >= $preferred_ts) {
// try to send digests within 2 hours of preferred time
if ($preferred_ts && time() >= $preferred_ts &&
time() - $preferred_ts <= 7200) {
if ($debug) print "Sending digest for UID:" . $line['id'] . " - " . $line["email"] . " ... ";