From 200f1aadb55f476bcfa2aaa6f29f742eac6e0c43 Mon Sep 17 00:00:00 2001 From: calzoneman Date: Tue, 16 Jul 2013 11:50:08 -0400 Subject: [PATCH] Fix channellist.html if anyone still uses that --- api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api.js b/api.js index e288ab3e..672a0016 100644 --- a/api.js +++ b/api.js @@ -160,7 +160,7 @@ module.exports = function (Server) { } var clist = []; for(var key in Server.channels) { - clist.push(key); + clist.push(Server.channels[key].name); } handleChannelData({channel: clist.join(",")}, req, res); },