Fix channellist.html if anyone still uses that

This commit is contained in:
calzoneman 2013-07-16 11:50:08 -04:00
parent bd6acc42c9
commit 200f1aadb5

2
api.js
View file

@ -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);
},