# HG changeset patch # User Kim Alvefur # Date 1369597849 -7200 # Node ID 043189eb41bc9c00ef7181eee55d7b08184ec849 # Parent 9839198539c8cd853b3c4b0fa1934c4f854093a7 mod_muc_log_http: Don't use nonexistent API diff -r 9839198539c8 -r 043189eb41bc mod_muc_log_http/muc_log_http/mod_muc_log_http.lua --- a/mod_muc_log_http/muc_log_http/mod_muc_log_http.lua Fri May 24 15:46:23 2013 +0200 +++ b/mod_muc_log_http/muc_log_http/mod_muc_log_http.lua Sun May 26 21:50:49 2013 +0200 @@ -684,7 +684,7 @@ end function module.load() - config = module:get_option_table("muc_log_http_config", {}); + config = module:get_option("muc_log_http_config", {}); if config.showStatus == nil then config.showStatus = true; end if config.showJoin == nil then config.showJoin = true; end if config.urlBase and type(config.urlBase) == "string" then urlBase = config.urlBase; end