Software /
code /
prosody-modules
Changeset
3578:ea63dc0cc824
mod_http_muc_log: Sort room listing by jid for stable order
It was silly that the list would be shuffled every time you reloaded the
page.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 05 May 2019 11:01:17 +0200 |
parents | 3577:f169d9a513c6 |
children | 3579:b5511c48c958 |
files | mod_http_muc_log/mod_http_muc_log.lua |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_http_muc_log/mod_http_muc_log.lua Sun May 05 10:24:53 2019 +0200 +++ b/mod_http_muc_log/mod_http_muc_log.lua Sun May 05 11:01:17 2019 +0200 @@ -335,6 +335,7 @@ for room in each_room() do if not (room.get_hidden or room.is_hidden)(room) then room_list[i], i = { + jid = room.jid; href = get_link(jid_split(room.jid), nil); name = room:get_name(); description = room:get_description(); @@ -342,6 +343,10 @@ end end + table.sort(room_list, function (a, b) + return a.jid < b.jid; + end); + response.headers.content_type = "text/html; charset=utf-8"; return render(template, { title = module:get_option_string("name", "Prosody Chatrooms");