mod_muc_log_http: Generate component room list page even when there are no rooms.
authorWaqas Hussain <waqas20@gmail.com>
Mon, 25 Jul 2011 02:21:40 +0500
changeset 385 fec9bc52aa42
parent 384 79983e658bb5
child 386 d54dbbfda3bb
mod_muc_log_http: Generate component room list page even when there are no rooms.
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	Mon Jul 25 02:21:40 2011 +0500
+++ b/mod_muc_log_http/muc_log_http/mod_muc_log_http.lua	Mon Jul 25 02:21:40 2011 +0500
@@ -116,9 +116,7 @@
 				rooms = rooms .. html.rooms.bit:gsub("###ROOM###", node):gsub("###COMPONENT###", component);
 			end
 		end
-		if rooms ~= "" then
-			return html.rooms.body:gsub("###ROOMS_STUFF###", rooms):gsub("###COMPONENT###", component);
-		end
+		return html.rooms.body:gsub("###ROOMS_STUFF###", rooms):gsub("###COMPONENT###", component);
 	end
 end