Modify website to support new sub-folders architecture

This commit is contained in:
2023-02-13 05:45:08 +01:00
parent 454503271e
commit 94ad823e3b
2 changed files with 10 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ See <?php echoUrl('https://gitea.lemnoslife.com/Benjamin_Loison/YouTube_captions
var channelsDom = document.getElementById('channels');
const channelFileParts = line.split('/');
const channel = channelFileParts[0];
const channelFile = channelFileParts[1];
const channelFile = channelFileParts.slice(1).join('/');
const channelHref = `channels/${channel}`;
if (!channels.includes(channel)) {
channels.push(channel);