diff --git a/html/channel.ejs b/html/channel.ejs index e1eb56ac..aa3f22e4 100644 --- a/html/channel.ejs +++ b/html/channel.ejs @@ -591,7 +591,7 @@ white-space: nowrap;text-decoration: none;" href="/feeds/videos.xml?channel_id=< <% } %> - <% if (Array.isArray(c.comments)) { %> + <% if (Array.isArray(c?.comments)) { %> <% if (c.comments.length != "0") { %> @@ -869,7 +869,7 @@ width: fit-content;
- <% if (Array.isArray( tj.videos)) { %> + <% if (Array.isArray( tj?.videos)) { %> <% tj.videos.forEach (x => { %> @@ -889,7 +889,7 @@ width: fit-content;
- <% if (tj.continuation) { %> + <% if (tj?.continuation) { %>
Next Page