commit b98d105ad776f082da13820994ba4d0e8bd0c99f parent a173c6b9b7aebc782bf2d8c9de478fa23bda4225 Author: René Wagner <rwa@clttr.info> Date: Sat, 23 Jul 2022 08:37:54 +0200 show 50 newest hosts instead of 30 Diffstat:
M | serve/models.py | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/serve/models.py b/serve/models.py @@ -41,7 +41,7 @@ class GUS: AND first_seen_at IS NOT NULL GROUP BY p.domain ORDER BY first_seen_at DESC - LIMIT 30 + LIMIT 50 """ ) self.newest_hosts = newest_hosts_query.execute()