This commit is contained in:
Mirco Wittrien 2018-10-21 12:29:41 +02:00
parent ab18baca2c
commit 43efda7f68
1 changed files with 1 additions and 1 deletions

View File

@ -512,7 +512,7 @@ class ShowHiddenChannels {
if (channelList && category) {
category.remove();
let count = parseInt(channelList.lastChild.previousSibling.className.split("-")[1])+1;
category.attr("class", "container-" + count + " container-hidden");
category.className = "container-" + count + " container-hidden";
channelList.insertBefore(category,channelList.lastChild);
}
}