bump size of index cli search

This commit is contained in:
Shish 2020-02-02 15:53:20 +00:00
parent 0452de1be9
commit 7cf5c2a28c

View File

@ -154,7 +154,7 @@ class Index extends Extension
} }
if ($event->cmd == "search") { if ($event->cmd == "search") {
$query = count($event->args) > 0 ? Tag::explode($event->args[0]) : []; $query = count($event->args) > 0 ? Tag::explode($event->args[0]) : [];
$items = Image::find_images(0, 100, $query); $items = Image::find_images(0, 1000, $query);
foreach ($items as $item) { foreach ($items as $item) {
print("{$item->hash}\n"); print("{$item->hash}\n");
} }