Archived
1
0

fix bug in feeds

This commit is contained in:
Jeff 2017-07-20 21:35:48 -04:00
parent 31a1109372
commit 37ebcc2693

View File

@ -49,9 +49,11 @@ function inject_nntp_feed_element(feed, elem) {
elem.appendChild(name); elem.appendChild(name);
var conns = document.createElement("div"); var conns = document.createElement("div");
conns.setAttribute("class", "connections"); conns.setAttribute("class", "connections");
if (feed.Conns) {
for ( var idx = 0 ; idx < feed.Conns.length; idx ++ ) { for ( var idx = 0 ; idx < feed.Conns.length; idx ++ ) {
conns.appendChild(createConnectionElement(feed.Conns[idx])); conns.appendChild(createConnectionElement(feed.Conns[idx]));
} }
}
elem.appendChild(conns); elem.appendChild(conns);
} }