]> git.mxchange.org Git - fba.git/commitdiff
Fucking unicode
authorMint <>
Mon, 8 Aug 2022 11:11:01 +0000 (14:11 +0300)
committerMint <>
Mon, 8 Aug 2022 11:11:01 +0000 (14:11 +0300)
api.py

diff --git a/api.py b/api.py
index cd302ef28a00c69cc10f80ab8c672a4360d6213f..d37d22e7bdc46caadc223e24fdf378baabba18ea 100644 (file)
--- a/api.py
+++ b/api.py
@@ -38,8 +38,9 @@ def blocked(domain: str = None, reason: str = None):
     c = conn.cursor()
     if domain != None:
         wildchar = "*." + ".".join(domain.split(".")[-domain.count("."):])
+        punycode = domain.encode('idna').decode('utf-8')
         c.execute("select blocker, block_level, reason from blocks where blocked = ? or blocked = ? or blocked = ? or blocked = ? or blocked = ? or blocked = ?",
-                  (domain, "*." + domain, wildchar, get_hash(domain), domain.encode('idna'), "*." + domain.encode('idna')))
+                  (domain, "*." + domain, wildchar, get_hash(domain), punycode, "*." + punycode))
     else:
         c.execute("select * from blocks where reason like ? and reason != ''", ("%"+reason+"%",))
     blocks = c.fetchall()