# HG changeset patch # User Kim Alvefur # Date 1415549748 -3600 # Node ID 6c6c1fab4ee525b3f2c4572c9c1cd8e50dc210c9 # Parent 96f11a1c8b37b4c8d2b091c1a188b47e0e1aff2e mod_http_muc_log: Remove unnessesary character from pattern diff -r 96f11a1c8b37 -r 6c6c1fab4ee5 mod_http_muc_log/mod_http_muc_log.lua --- a/mod_http_muc_log/mod_http_muc_log.lua Sun Nov 09 17:14:44 2014 +0100 +++ b/mod_http_muc_log/mod_http_muc_log.lua Sun Nov 09 17:15:48 2014 +0100 @@ -37,7 +37,7 @@ {name?} is optional and is replaced with an empty string if no value exists ]] return function(values) - return (data:gsub("{([^!}]-)(%p?)}", function (name, opt) + return (data:gsub("{([^}]-)(%p?)}", function (name, opt) local value = values[name]; if value then if opt ~= "!" then