mirror of
https://github.com/searxng/searxng.git
synced 2024-11-04 20:30:11 +01:00
fix: %2F in path will be converted to " › "
This commit is contained in:
parent
4135a74001
commit
c7de5c043c
@ -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]
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user