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/cache.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'searx/favicons/cache.py') diff --git a/searx/favicons/cache.py b/searx/favicons/cache.py index c46eb5621..1aa722d89 100644 --- a/searx/favicons/cache.py +++ b/searx/favicons/cache.py @@ -20,11 +20,11 @@ from __future__ import annotations from typing import Literal +import os import abc import dataclasses import hashlib import logging -import pathlib import sqlite3 import tempfile import time @@ -103,7 +103,7 @@ class FaviconCacheConfig(msgspec.Struct): # pylint: disable=too-few-public-meth :py:obj:`.cache.FaviconCacheMEM` (not recommended) """ - db_url: pathlib.Path = pathlib.Path(tempfile.gettempdir()) / "faviconcache.db" + db_url: str = tempfile.gettempdir() + os.sep + "faviconcache.db" """URL of the SQLite DB, the path to the database file.""" HOLD_TIME: int = 60 * 60 * 24 * 30 # 30 days -- cgit v1.2.3