mod_server_contact_info: Sort form fields to please scansion
authorKim Alvefur <zash@zash.se>
Sat, 06 Apr 2024 16:51:27 +0200
changeset 13479 c14659710747
parent 13478 05c1098084cd
child 13480 b9267ce1b183
mod_server_contact_info: Sort form fields to please scansion The unstable hash table order caused the tests to fail and I don't know how to tell scansion to ignore the order.
plugins/mod_server_contact_info.lua
--- a/plugins/mod_server_contact_info.lua	Sat Apr 06 14:31:28 2024 +0200
+++ b/plugins/mod_server_contact_info.lua	Sat Apr 06 16:51:27 2024 +0200
@@ -7,6 +7,7 @@
 --
 
 local array = require "prosody.util.array";
+local it = require "prosody.util.iterators";
 local jid = require "prosody.util.jid";
 local url = require "socket.url";
 
@@ -32,7 +33,7 @@
 
 local fields = {};
 
-for key, field_var in pairs(address_types) do
+for key, field_var in it.sorted_pairs(address_types) do
 	if contact_config[key] then
 		table.insert(fields, {
 			type = "list-multi";