From 4f59676a9f835876dbe151a7f628fdf8436ca747 Mon Sep 17 00:00:00 2001 From: bz007 Date: Sun, 8 Dec 2024 01:35:39 +0300 Subject: [PATCH] Enable PhotoSwipe on larger albums Limit was 1000 photos, it is too low for nowadays, increasing to 10000. --- include/themecontroller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/themecontroller.php b/include/themecontroller.php index 844eb573..d6e0a835 100644 --- a/include/themecontroller.php +++ b/include/themecontroller.php @@ -174,7 +174,7 @@ public function getAllThumbnailsInCategory() return; } - if (count($page['items']) > 1000) + if (count($page['items']) > 10000) { $this->config->slick_enabled = false; $this->config->photoswipe = false;