Better check for finished conversion

This commit is contained in:
Michael 2020-04-30 09:03:05 +00:00
parent 88931e5053
commit bb0d6ce6f6
1 changed files with 6 additions and 2 deletions

View File

@ -585,7 +585,9 @@ class PostUpdate
Logger::info('Processed', ['rows' => $rows, 'last' => $id]);
if ($start_id == $id) {
// When there are less than 100 items processed this means that we reached the end
// The other entries will then be processed with the regular functionality
if ($rows < 100) {
DI::config()->set('system', 'post_update_version', 1341);
Logger::info('Done');
return true;
@ -655,7 +657,9 @@ class PostUpdate
Logger::info('Processed', ['rows' => $rows, 'last' => $id]);
if ($start_id == $id) {
// When there are less than 100 items processed this means that we reached the end
// The other entries will then be processed with the regular functionality
if ($rows < 100) {
DI::config()->set('system', 'post_update_version', 1342);
Logger::info('Done');
return true;