Browse Source

fix: %2F in path will be converted to " › "

HZH 3 years ago
parent
commit
c7de5c043c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      searx/webapp.py

+ 1 - 1
searx/webapp.py

@@ -434,7 +434,7 @@ def _get_enable_categories(all_categories: Iterable[str]):
 def get_pretty_url(parsed_url: urllib.parse.ParseResult):
     path = parsed_url.path
     path = path[:-1] if len(path) > 0 and path[-1] == '/' else path
-    path = unquote(path).replace("/", " › ")
+    path = unquote(path.replace("/", " › "))
     return [parsed_url.scheme + "://" + parsed_url.netloc, path]