From 7b6b8d567f23fddfcae7a2bc1cc0c7ba2c59159e Mon Sep 17 00:00:00 2001
From: Mint <>
Date: Mon, 8 Aug 2022 14:38:04 +0300
Subject: [PATCH] c

---
 api.py     | 4 ++--
 index.html | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/api.py b/api.py
index 79d2d2a..db924c6 100644
--- a/api.py
+++ b/api.py
@@ -72,7 +72,7 @@ def blocked(domain: str = None, reason: str = None):
     return {"blocks": result}
 
 @app.get(base_url+"/")
-def index(request: Request, domain: str = None, reason: str = None, wildcards: str = None):
+def index(request: Request, domain: str = None, reason: str = None):
     if domain == "" or reason == "":
         return responses.RedirectResponse("/")
     info = None
@@ -90,7 +90,7 @@ def index(request: Request, domain: str = None, reason: str = None, wildcards: s
         if not blocks.ok:
             raise HTTPException(status_code=blocks.status_code, detail=blocks.text)
         blocks = blocks.json()
-    return templates.TemplateResponse("index.html", {"request": request, "domain": domain, "blocks": blocks, "wildcards": wildcards, "reason": reason, "info": info})
+    return templates.TemplateResponse("index.html", {"request": request, "domain": domain, "blocks": blocks, "reason": reason, "info": info})
 
 if __name__ == "__main__":
     uvicorn.run("api:app", host="127.0.0.1", port=port, log_level="info")
diff --git a/index.html b/index.html
index 9819402..31fcab8 100644
--- a/index.html
+++ b/index.html
@@ -76,7 +76,7 @@
                     <div class="block">
                         <img src="https://proxy.duckduckgo.com/ip3/{{block}}.ico" width=16/>
                         <b><a href="https://{{block}}">{{block}}</a></b>
-                        {% if block in wildcards %}
+                        {% if block in blocks.wildcards %}
                             (<span title="wildcard block">&lowast;</span>)
                         {% endif %}
                         <br/>
-- 
2.39.5