From fa4dfd4efea01d558dd4c8b0d6db39708ee03917 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Tue, 29 Oct 2024 17:32:30 +0100 Subject: [fix] favicons: msgspec.ValidationError: Expected `Path`, got `str` - at `$.favicons.cache.db_url` Closes: https://github.com/searxng/searxng/issues/3975 Signed-off-by: Markus Heiser --- searx/favicons/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'searx/favicons/config.py') diff --git a/searx/favicons/config.py b/searx/favicons/config.py index bf53b0821..33aa157d6 100644 --- a/searx/favicons/config.py +++ b/searx/favicons/config.py @@ -27,10 +27,10 @@ class FaviconConfig(msgspec.Struct): # pylint: disable=too-few-public-methods By specifying a version, it is possible to ensure downward compatibility in the event of future changes to the configuration schema""" - cache: FaviconCacheConfig = FaviconCacheConfig + cache: FaviconCacheConfig = msgspec.field(default_factory=FaviconCacheConfig) """Setup of the :py:obj:`.cache.FaviconCacheConfig`.""" - proxy: FaviconProxyConfig = FaviconCacheConfig + proxy: FaviconProxyConfig = msgspec.field(default_factory=FaviconProxyConfig) """Setup of the :py:obj:`.proxy.FaviconProxyConfig`.""" @classmethod -- cgit v1.2.3