]> git.mxchange.org Git - fba.git/commitdiff
Fix order
authorMint <>
Thu, 10 Nov 2022 14:10:56 +0000 (17:10 +0300)
committerMint <>
Thu, 10 Nov 2022 14:10:56 +0000 (17:10 +0300)
api.py

diff --git a/api.py b/api.py
index 17323be4484a869c94b7828c6dce74736c9a7946..68be9f2aaef469b5db700d75a0ddde0d05057473 100644 (file)
--- a/api.py
+++ b/api.py
@@ -42,7 +42,7 @@ def blocked(domain: str = None, reason: str = None):
         c.execute("select blocker, blocked, block_level, reason from blocks where blocked = ? or blocked = ? or blocked = ? or blocked = ? or blocked = ? or blocked = ?",
                   (domain, "*." + domain, wildchar, get_hash(domain), punycode, "*." + punycode))
     else:
-        c.execute("select blocker, blocked, block_level, reason from blocks where reason like ? and reason != ''", ("%"+reason+"%",))
+        c.execute("select blocker, blocked, reason, block_level from blocks where reason like ? and reason != ''", ("%"+reason+"%",))
     blocks = c.fetchall()
     conn.close()