enhancements of channel list

This commit is contained in:
Mystikfluu
2022-07-12 15:07:45 +02:00
parent aa42afe092
commit 2dd4e7c447
3 changed files with 5 additions and 2 deletions
+1
View File
@@ -267,6 +267,7 @@ async function loadChannels() {
tab.innerHTML = ""
for (let i = 0; i < channels.length; i++) {
let channelname = channels[i].post_receiver_name
if(channelname == "")continue;
let channelp = document.createElement("p")
channelp.classList.add("channel")
let textnode = document.createTextNode(channelname)