about summary refs log tree commit diff
path: root/networks.c
diff options
context:
space:
mode:
Diffstat (limited to 'networks.c')
-rw-r--r--networks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networks.c b/networks.c
index 4fcd476..c0f171a 100644
--- a/networks.c
+++ b/networks.c
@@ -36,7 +36,7 @@ const char *NetworksQuery = SQL(
 	), allNetworks AS (
 		SELECT DISTINCT network
 		FROM contexts
-		ORDER BY network
+		ORDER BY network COLLATE NOCASE
 	)
 	SELECT network, 1 FROM activeNetworks
 	UNION ALL