From: Michael Tremer Date: Fri, 2 Jan 2026 14:28:09 +0000 (+0000) Subject: lists: Perform stable sorting for sources X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=70640d296402253ec628c7baeb0c0a33c878f298;p=dbl.git lists: Perform stable sorting for sources Signed-off-by: Michael Tremer --- diff --git a/src/dnsbl/lists.py b/src/dnsbl/lists.py index 3173b2a..01e429f 100644 --- a/src/dnsbl/lists.py +++ b/src/dnsbl/lists.py @@ -163,7 +163,7 @@ class List(sqlmodel.SQLModel, database.BackendMixin, table=True): Source.list_id == List.id, Source.deleted_at == None, )""", - "order_by" : "Source.name", + "order_by" : "Source.name, Source.url", }, )