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 2b8e4cb4d81cc36845f3b607e7fbd65f97d4c6c0
parent c79311ee6cc63e48f5017e34e79b52756ef2ec0f
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date:   Sat, 30 May 2026 21:27:20 +0200

fix: close regex filter

Diffstat:
Mindex.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/index.php b/index.php @@ -156,7 +156,7 @@ // Skip entry if it is a short $uri = $video["link"]["@attributes"]["href"]; - if (preg_match('/\/shorts\/', $uri) > 0) { + if (preg_match('/\/shorts\//', $uri) > 0) { continue; }