From bd6acc42c994834428f55ffe1986a9eccc5a3fad Mon Sep 17 00:00:00 2001 From: calzoneman Date: Tue, 16 Jul 2013 11:49:32 -0400 Subject: [PATCH] fix index page --- api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api.js b/api.js index e5ad034f..e288ab3e 100644 --- a/api.js +++ b/api.js @@ -145,7 +145,7 @@ module.exports = function (Server) { var clist = []; for(var key in all) { if(all[key].opts.show_public) { - clist.push(key); + clist.push(all[key].name); } } this.handleChannelData({channel: clist.join(",")}, req, res);