From f65f4f454adfdbb59c7ae9152e66a94089758354 Mon Sep 17 00:00:00 2001 From: Ashley Date: Fri, 8 Dec 2023 21:45:34 +0000 Subject: [PATCH] dont display like count if its 0 fixes : #18 Signed-off-by: Ashley --- html/poketube.ejs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/html/poketube.ejs b/html/poketube.ejs index 724a387a..6b18cb34 100644 --- a/html/poketube.ejs +++ b/html/poketube.ejs @@ -1460,8 +1460,7 @@ display: block; !important;" autoplay controls Top Comments of this video!! :3


- <% inv.comments.forEach(x =>{ %>
<% if (!x.authorIsChannelOwner) { %>

<%- x.author%> <% if (x.verified) { %> <% } %>

<%- x.publishedText %>

<% } %> <% if (x.authorIsChannelOwner) { %>

<%- x.author%> <% if (x.verified) { %> <% } %>

<%- x.publishedText %>

<% } %>

<%- x.contentHtml %>

<%- convert(x.likeCount) %> | <% if(x.creatorHeart) { %> <% } %>

<% }) %> - +<% inv.comments.forEach(x =>{ %>
<% if (!x.authorIsChannelOwner) { %>

<%- x.author%><% if (x.verified) { %><% } %>

<%- x.publishedText %>

<% } %><% if (x.authorIsChannelOwner) { %>

<%- x.author%><% if (x.verified) { %><% } %>

<%- x.publishedText %>

<% } %>

<%- x.contentHtml %>

<% if (x.likeCount === 0) { %> | <% } else { %><%= convert(x.likeCount) %>| <% } %><% if(x.creatorHeart) { %><% } %>

<% }) %>
Go To Top
@@ -2782,7 +2781,9 @@ More Epic options owo~

<%- x.contentHtml %> - <%- convert(x.likeCount) %> | <% if(x.creatorHeart) { %> + <%- convert(x.likeCount) %> | + + <% if(x.creatorHeart) { %>