pub / yt2html

Fetches Youtube content via RSS and provides a chronological timeline
git clone https://src.jayvii.de/pub/yt2html.git
Home | Log | Files | Exports | Refs | README | RSS

commit 76bc9d533bbbe60c013db4cc056f6d52786f5f9d
parent 3895a499b54d1378e23a2e91d4bdadba213d7b10
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date:   Sat,  1 Mar 2025 14:16:54 +0100

fix: used trimmed description string for shorts-check

Diffstat:
Mindex.php | 17++++++++++++-----
1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/index.php b/index.php @@ -96,9 +96,9 @@ // Replace un-parsable items $channel_xml = str_replace( - array("yt:", "media:"), - array("yt_", "media_"), - $channel_xml + array("yt:", "media:"), + array("yt_", "media_"), + $channel_xml ); // Cast Array to string @@ -157,11 +157,18 @@ * description only contains #hashtags * has no description at all */ - $vdesc = explode(" ", $video["desc"]); + $vdesc = explode( + " ", + preg_replace( + '/\s+/', + ' ', + preg_replace('/\t|\n|\r|\0|\v/', ' ', trim($video["desc"])) + ) + ); if ( preg_match('/#short(s)*/', $video["title"]) > 0 || preg_match('/#short(s)*/', $video["desc"]) > 0 || - preg_grep('/^#', $vdesc) == $vdesc || + preg_grep('/^#/', $vdesc) == $vdesc || strlen($video["desc"]) == 0 ) { continue;