]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Wed, 24 May 2023 15:23:56 +0000 (17:23 +0200)
committerRoland Häder <roland@mxchange.org>
Wed, 24 May 2023 15:23:56 +0000 (17:23 +0200)
- after sorting by count, sort by software name

api.py

diff --git a/api.py b/api.py
index d94d75ed2f43d38cfafae189547eab3fe15097cc..790a0809975947a4f49d50be62845eb50e445c21 100644 (file)
--- a/api.py
+++ b/api.py
@@ -42,7 +42,7 @@ def top(blocked: int = None, blockers: int = None, reference: int = None, softwa
     elif software != None:
         if software > 500:
             raise HTTPException(status_code=400, detail="Too many results")
-        fba.cursor.execute("SELECT software, COUNT(domain) FROM instances WHERE software IS NOT NULL GROUP BY software ORDER BY COUNT(domain) DESC LIMIT ?", [software])
+        fba.cursor.execute("SELECT software, COUNT(domain) FROM instances WHERE software IS NOT NULL GROUP BY software ORDER BY COUNT(domain) DESC, software ASC LIMIT ?", [software])
     else:
         raise HTTPException(status_code=400, detail="No filter specified")