From 6ebe5fcac32676ae146e1651fc0c2f294ac9d236 Mon Sep 17 00:00:00 2001 From: haszi Date: Wed, 22 May 2024 17:18:19 +0200 Subject: [PATCH] Remove superfluous database initialization (#128) Remove superfluous database initialization as database is already initialized during the initialization of Indexing. Co-authored-by: haszi --- render.php | 1 - 1 file changed, 1 deletion(-) diff --git a/render.php b/render.php index 30b9cbd1..92ef3e6b 100644 --- a/render.php +++ b/render.php @@ -122,7 +122,6 @@ function make_reader(Config $config) { // Indexing if (requireIndexing(new Config)) { v("Indexing...", VERBOSE_INDEXING); - Config::indexcache()->init(); // Create indexer $format = new Index(Config::indexcache()); $render->attach($format);