Check for a filled "event-id" field

This commit is contained in:
Michael 2022-02-05 16:22:21 +00:00
parent bd8032f2ba
commit 3e51309525
1 changed files with 1 additions and 4 deletions

View File

@ -182,11 +182,8 @@ class Processor
Item::update($item, ['uri' => $activity['id']]);
if ($activity['object_type'] == 'as:Event') {
$posts = Post::select(['event-id', 'uid'], ['uri' => $activity['id']]);
$posts = Post::select(['event-id', 'uid'], ["`uri` = ? AND `event-id` > ?", $activity['id'], 0]);
while ($post = DBA::fetch($posts)) {
if (empty($post['event-id'])) {
continue;
}
self::updateEvent($post['event-id'], $activity);
}
}