Should fix redirector
This commit is contained in:
parent
b71b68d2c3
commit
5d4d3bf5cd
@ -36,12 +36,12 @@ async def _handle_request(path: str):
|
||||
|
||||
domains = Environment.get("DOMAINS", list[str], [])
|
||||
domain = await short_url.domain
|
||||
logger.debug(f"Domain: {domain}, request.host: {request.host}")
|
||||
logger.debug(f"Domain: {domain.name}, request.host: {request.host}")
|
||||
|
||||
host = request.host
|
||||
if ":" in host:
|
||||
host = host.split(":")[0]
|
||||
if host not in domains or domain is not None and domain.name not in domains:
|
||||
if domain is None or len([x for x in domains if host.endswith(x.name)]) == 0:
|
||||
return render_template("404.html"), 404
|
||||
|
||||
user_agent = request.headers.get("User-Agent", "").lower()
|
||||
|
@ -1 +1 @@
|
||||
1.2.3
|
||||
1.2.4
|
Loading…
Reference in New Issue
Block a user