mirror of
https://github.com/friendica/friendica
synced 2024-11-10 08:22:57 +00:00
Ensure that the post update doesn't end prematurely (#5684)
This commit is contained in:
parent
27cf228857
commit
cf6140e86f
1 changed files with 12 additions and 0 deletions
|
@ -253,6 +253,12 @@ class PostUpdate
|
|||
$condition = ["`id` > ?", $id];
|
||||
$params = ['order' => ['id'], 'limit' => 10000];
|
||||
$items = Item::select($fields, $condition, $params);
|
||||
|
||||
if (DBA::errorNo() != 0) {
|
||||
logger('Database error ' . DBA::errorNo() . ':' . DBA::errorMessage());
|
||||
return false;
|
||||
}
|
||||
|
||||
while ($item = Item::fetch($items)) {
|
||||
$id = $item['id'];
|
||||
|
||||
|
@ -394,6 +400,12 @@ class PostUpdate
|
|||
$condition = ["`id` > ?", $id];
|
||||
$params = ['order' => ['id'], 'limit' => 10000];
|
||||
$items = DBA::select('item', $fields, $condition, $params);
|
||||
|
||||
if (DBA::errorNo() != 0) {
|
||||
logger('Database error ' . DBA::errorNo() . ':' . DBA::errorMessage());
|
||||
return false;
|
||||
}
|
||||
|
||||
while ($item = DBA::fetch($items)) {
|
||||
$id = $item['id'];
|
||||
|
||||
|
|
Loading…
Reference in a new issue