]> git.mxchange.org Git - friendica.git/commitdiff
1,000 is better than 100
authorMichael <heluecht@pirati.ca>
Thu, 30 Apr 2020 12:13:13 +0000 (12:13 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 30 Apr 2020 12:13:13 +0000 (12:13 +0000)
src/Database/PostUpdate.php

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