mirror of
https://github.com/minetest/contentdb.git
synced 2024-12-22 14:02:24 +01:00
Fix crash due to misnamed path
argument in abs_url_for
This commit is contained in:
parent
e1a86f3be0
commit
ef28fa026e
@ -33,9 +33,9 @@ def is_safe_url(target):
|
||||
|
||||
# These are given to Jinja in template_filters.py
|
||||
|
||||
def abs_url_for(path, **kwargs):
|
||||
def abs_url_for(endpoint: str, **kwargs):
|
||||
scheme = "https" if app.config["BASE_URL"][:5] == "https" else "http"
|
||||
return url_for(path, _external=True, _scheme=scheme, **kwargs)
|
||||
return url_for(endpoint, _external=True, _scheme=scheme, **kwargs)
|
||||
|
||||
def abs_url(path):
|
||||
return urljoin(app.config["BASE_URL"], path)
|
||||
|
Loading…
Reference in New Issue
Block a user