# HG changeset patch # User Kim Alvefur # Date 1569797465 -7200 # Node ID 96c6d9b0969f33b21ff406db6577e957288cc5d6 # Parent be430d077d1c198362d5151516154277669728b2 mod_http_muc_log: Hide room join link from room listing Node-less MUC is a secret non-standard hack anyways diff -r be430d077d1c -r 96c6d9b0969f mod_http_muc_log/http_muc_log.html --- a/mod_http_muc_log/http_muc_log.html Mon Sep 30 00:47:15 2019 +0200 +++ b/mod_http_muc_log/http_muc_log.html Mon Sep 30 00:51:05 2019 +0200 @@ -48,7 +48,10 @@

{title}

diff -r be430d077d1c -r 96c6d9b0969f mod_http_muc_log/mod_http_muc_log.lua --- a/mod_http_muc_log/mod_http_muc_log.lua Mon Sep 30 00:47:15 2019 +0200 +++ b/mod_http_muc_log/mod_http_muc_log.lua Mon Sep 30 00:51:05 2019 +0200 @@ -242,6 +242,7 @@ return render(template, { title = get_room(room):get_name(); jid = get_room(room).jid; + jid_node = jid_split(get_room(room).jid); hide_presence = hide_presence(request); presence_available = presence_logged; years = years; @@ -373,6 +374,7 @@ return render(template, { title = ("%s - %s"):format(get_room(room):get_name(), date); jid = get_room(room).jid; + jid_node = jid_split(get_room(room).jid); hide_presence = hide_presence(request); presence_available = presence_logged; lines = logs;