diff --git a/submodules/letsencrypt/hosting_letsencrypt.module b/submodules/letsencrypt/hosting_letsencrypt.module index 2c963ef..9123c13 100644 --- a/submodules/letsencrypt/hosting_letsencrypt.module +++ b/submodules/letsencrypt/hosting_letsencrypt.module @@ -89,7 +89,7 @@ function hosting_letsencrypt_get_sites($queue_only = FALSE, $limit = 0) { ->condition('s.status', $enabled) ->orderBy('s.verified', 'ASC'); if ($queue_only) { - $query->condition('s.verified', time() - (86400 * 7 * 4), '<='); + $query->condition('s.verified', time() - (86400 * 7 * 2), '<='); } if ($limit) { $query->range(0, $limit);