Software /
code /
prosody-modules
Changeset
3583:a36412d4fafd
mod_http_muc_log: Trim trailing whitespace [luacheck]
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 05 May 2019 14:47:07 +0200 |
parents | 3582:444e2306c99a |
children | 3584:611ac62c5b63 |
files | mod_http_muc_log/mod_http_muc_log.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_http_muc_log/mod_http_muc_log.lua Sun May 05 14:06:50 2019 +0200 +++ b/mod_http_muc_log/mod_http_muc_log.lua Sun May 05 14:47:07 2019 +0200 @@ -353,7 +353,7 @@ end table.sort(room_list, function (a, b) - return a.jid < b.jid; + return a.jid < b.jid; end); response.headers.content_type = "text/html; charset=utf-8";