diff options
| author | Bnyro <bnyro@tutanota.com> | 2026-09-04 10:33:03 +0200 |
|---|---|---|
| committer | Bnyro <bnyro@tutanota.com> | 2026-09-04 10:33:42 +0200 |
| commit | 03c439a5b930a6d7cceb0a2c7ad76e24d2c7d514 (patch) | |
| tree | 5f91f676106ead8d59bc01a2a4c1cbae7c8d8650 | |
| parent | be836e614a2f2e7512e2e1915a0bc37d51ee865c (diff) | |
[fix] marginalia: crashes with missing filter name
| -rw-r--r-- | searx/engines/marginalia.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/marginalia.py b/searx/engines/marginalia.py index 510770691..9257fabf6 100644 --- a/searx/engines/marginalia.py +++ b/searx/engines/marginalia.py @@ -82,7 +82,7 @@ api_key = None https://about.marginalia-search.com/article/api/ """ -filter_name: str | None = None +filter_name: str = "" """The name of the custom filter to apply to each search.""" |
