From bcde36ac1794a8f22723802ec0fc4ba2ba0ffb20 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Mon, 20 Jan 2025 10:45:31 +0900 Subject: [PATCH] DB IO Cache reset should not be an error If the query is not found, do not throw an error, just show a warning --- www/lib/CoreLibs/DB/IO.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/lib/CoreLibs/DB/IO.php b/www/lib/CoreLibs/DB/IO.php index a0ae64de..038f32d8 100644 --- a/www/lib/CoreLibs/DB/IO.php +++ b/www/lib/CoreLibs/DB/IO.php @@ -2946,7 +2946,7 @@ class IO $query_hash = $this->dbGetQueryHash($query, $params); // clears cache for this query if (empty($this->cursor_ext[$query_hash]['query'])) { - $this->__dbError(18, context: [ + $this->__dbWarning(18, context: [ 'query' => $query, 'params' => $params, 'hash' => $query_hash,