]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Sun, 10 Mar 2024 10:57:12 +0000 (11:57 +0100)
committerRoland Häder <roland@mxchange.org>
Sun, 10 Mar 2024 10:57:12 +0000 (11:57 +0100)
- need to convert type Row to a true tuple

daemon.py

index 0f87bec19818a541af76657ab332a405a4f0977e..1dcb7396a8cc67b0c91d979e4a3e7e6871684a51 100755 (executable)
--- a/daemon.py
+++ b/daemon.py
@@ -59,7 +59,7 @@ def api_info():
     database.cursor.execute("SELECT (SELECT COUNT(domain) AS total_websites FROM instances), (SELECT COUNT(domain) AS supported_instances FROM instances WHERE software IN ('pleroma', 'mastodon', 'lemmy', 'friendica', 'misskey', 'peertube', 'takahe', 'gotosocial', 'brighteon', 'wildebeest', 'bookwyrm', 'mitra', 'areionskey', 'mammuthus', 'neodb', 'smithereen', 'vebinet')), (SELECT COUNT(blocker) FROM blocks) AS total_blocks, (SELECT COUNT(domain) AS erroneous_instances FROM instances WHERE last_error_details IS NOT NULL)")
     row = database.cursor.fetchone()
 
-    return JSONResponse(status_code=200, content=row)
+    return JSONResponse(status_code=200, content=tuple(row))
 
 @router.get(config.get("base_url") + "/api/scoreboard.json", response_class=JSONResponse)
 def api_scoreboard(mode: str, amount: int):