# HG changeset patch # User Waqas Hussain # Date 1279118881 -18000 # Node ID 8d4e7c231d3e6e0fc9ed8299d892c4c913ab84ac # Parent 6c07b64e972cc9d33bc42631ee08b8815f4732e0 MUC: Fixed a traceback introduced in hg:bdc325ce9fbc. diff -r 6c07b64e972c -r 8d4e7c231d3e plugins/muc/muc.lib.lua --- a/plugins/muc/muc.lib.lua Wed Jul 14 15:32:14 2010 +0100 +++ b/plugins/muc/muc.lib.lua Wed Jul 14 19:48:01 2010 +0500 @@ -136,7 +136,7 @@ stanza:tag("x", {xmlns = "jabber:x:delay", from = muc_domain, stamp = datetime.legacy()}):up(); -- XEP-0091 (deprecated) local entry = { stanza = stanza, stamp = stamp }; t_insert(history, entry); - while #history > self._data.history_length do t_remove(history, 1) end + while #history > (self._data.history_length or default_history_length) do t_remove(history, 1) end end end function room_mt:broadcast_except_nick(stanza, nick) @@ -979,7 +979,7 @@ _occupants = {}; _data = { whois = 'moderators'; - history_length = (config and config.history_length) or default_history_length; + history_length = (config and config.history_length); }; _affiliations = {}; }, room_mt);