Always check whe verified

This commit is contained in:
Michael 2022-12-23 06:26:58 +00:00
parent 179d776d0a
commit 1e888ad6a4
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ class Cron
Worker::add(Worker::PRIORITY_LOW, 'OptimizeTables');
}
$users = DBA::select('owner-view', ['uid'], ["`last-activity` > ? AND (`homepage_verified` OR `homepage` != ?)", DateTimeFormat::utc('now - 30 days', 'Y-m-d'), '']);
$users = DBA::select('owner-view', ['uid'], ["`homepage_verified` OR (`last-activity` > ? AND `homepage` != ?)", DateTimeFormat::utc('now - 7 days', 'Y-m-d'), '']);
while ($user = DBA::fetch($users)) {
Worker::add(Worker::PRIORITY_LOW, 'CheckRelMeProfileLink', $user['uid']);
}