From 987d06f8945c3f2a51612174b9445b7245f64b58 Mon Sep 17 00:00:00 2001 From: haszi Date: Tue, 21 May 2024 22:48:41 +0200 Subject: [PATCH] Remove superfluous database initialization Remove superfluous database initialization as database is already initialized during the initialization of Indexing. --- 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);