From e0bcf41f1530f808a4c7d20dfdea44b78565d3f2 Mon Sep 17 00:00:00 2001 From: Ashley Date: Wed, 21 Sep 2022 14:21:36 +0200 Subject: [PATCH] add no desc warning --- html/poketube.ejs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/html/poketube.ejs b/html/poketube.ejs index 9ba16211..d5bd49d4 100644 --- a/html/poketube.ejs +++ b/html/poketube.ejs @@ -31,7 +31,7 @@ - + @@ -144,9 +144,15 @@
Description

+ <% if (String(video.Description) != "[object Object]") { %> <%-String(video.Description).replace(/\n/g, "
")%> - + <% } %> + + <% if (String(video.Description) == "[object Object]") { %> +

No Description On this Video

+ <% } %> + <% if (wiki.extract_html) { %>
From da web