mod_muc_log_http: ensure a theme was loaded when handling a http request
authorThilo Cestonaro <thilo@cestona.ro>
Tue, 22 Jun 2010 11:00:26 +0200
changeset 184 03cb7511ae54
parent 183 9d4fd01443eb
child 185 3bce55e453b1
mod_muc_log_http: ensure a theme was loaded when handling a http request
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	Tue Jun 22 10:56:49 2010 +0200
+++ b/mod_muc_log_http/muc_log_http/mod_muc_log_http.lua	Tue Jun 22 11:00:26 2010 +0200
@@ -692,7 +692,7 @@
 function handle_request(method, body, request)
 	local node, host, day = splitUrl(request.url.path);
 	
-	if muc_hosts ~= nil then
+	if muc_hosts ~= nil and html.doc ~= nil then
 	 	if node ~= nil and host ~= nil then
 			local bare = node .. "@" .. host;
 			if prosody.hosts[host] ~= nil and prosody.hosts[host].muc ~= nil then