Check for a filled "event-id" field

pull/11209/head
Michael 2022-02-05 16:22:21 +00:00
rodzic bd8032f2ba
commit 3e51309525
1 zmienionych plików z 1 dodań i 4 usunięć

Wyświetl plik

@ -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);
}
}