Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/logreader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/Controller/LogController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Controller/LogController.php b/lib/Controller/LogController.php
index 7820bbc..c038e0b 100644
--- a/lib/Controller/LogController.php
+++ b/lib/Controller/LogController.php
@@ -79,7 +79,7 @@ class LogController extends Controller {
*/
public function search($query = '', $count = 50, $offset = 0) {
$iterator = $this->getLogIterator();
- $iterator = new \LimitIterator($iterator, 0, 10000); // limit the number of message we search to avoid huge search times
+ $iterator = new \LimitIterator($iterator, 0, 100000); // limit the number of message we search to avoid huge search times
$iterator->rewind();
$iterator = new SearchFilter($iterator, $query);
$iterator->rewind();