]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Sat, 24 Jun 2023 10:41:19 +0000 (12:41 +0200)
committerRoland Häder <roland@mxchange.org>
Sat, 24 Jun 2023 10:41:19 +0000 (12:41 +0200)
- include all block levels

api.py

diff --git a/api.py b/api.py
index 3710197a39fe0cc1b3c60a478c1789945fcbbef4..f473936e98180d559ff2c9b05f42886b11061041 100644 (file)
--- a/api.py
+++ b/api.py
@@ -60,9 +60,9 @@ def api_scoreboard(mode: str, amount: int):
         raise HTTPException(status_code=400, detail="Too many results")
 
     if mode == "blocked":
-        database.cursor.execute("SELECT blocked, COUNT(blocked) AS score FROM blocks WHERE block_level = 'reject' GROUP BY blocked ORDER BY score DESC LIMIT ?", [amount])
+        database.cursor.execute("SELECT blocked, COUNT(blocked) AS score FROM blocks GROUP BY blocked ORDER BY score DESC LIMIT ?", [amount])
     elif mode == "blocker":
-        database.cursor.execute("SELECT blocker, COUNT(blocker) AS score FROM blocks WHERE block_level = 'reject' GROUP BY blocker ORDER BY score DESC LIMIT ?", [amount])
+        database.cursor.execute("SELECT blocker, COUNT(blocker) AS score FROM blocks GROUP BY blocker ORDER BY score DESC LIMIT ?", [amount])
     elif mode == "reference":
         database.cursor.execute("SELECT origin, COUNT(domain) AS score FROM instances WHERE software IS NOT NULL GROUP BY origin ORDER BY score DESC LIMIT ?", [amount])
     elif mode == "software":