# HG changeset patch # User Kim Alvefur # Date 1504529377 -7200 # Node ID a6d19aea9b73f1a6155628786a90a6dc6c8e201a # Parent f2096c03428b26a6227c715891e939e8c2f68554 mod_http_muc_log: Ignore 'logging' room option, it's no longer set by mod_mam_muc diff -r f2096c03428b -r a6d19aea9b73 mod_http_muc_log/mod_http_muc_log.lua --- a/mod_http_muc_log/mod_http_muc_log.lua Sun Sep 03 13:28:28 2017 +0200 +++ b/mod_http_muc_log/mod_http_muc_log.lua Mon Sep 04 14:49:37 2017 +0200 @@ -54,8 +54,7 @@ end return (room and not (room.get_hidden or room.is_hidden)(room) - and not (room.get_members_only or room.is_members_only)(room) - and room._data.logging == true); + and not (room.get_members_only or room.is_members_only)(room)) end local function sort_Y(a,b) return a.year > b.year end