Merge pull request #11645 from Quix0r/fixes/e-notice_use

Fixed possible "Trying to access array offset on value of type bool" E_NOTICE
This commit is contained in:
Hypolite Petovan 2022-06-16 08:45:50 -04:00 committed by GitHub
commit bb57d45237
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -133,7 +133,7 @@ class PostUpdate
}
$max_item_delivery_data = DBA::selectFirst('item-delivery-data', ['iid'], ['queue_count > 0 OR queue_done > 0'], ['order' => ['iid']]);
$max_iid = $max_item_delivery_data['iid'];
$max_iid = $max_item_delivery_data['iid'] ?? 0;
Logger::info('Start update1297 with max iid: ' . $max_iid);