pub / yt2rss

Transforms a youtube channel into a podcast RSS feed to insert into a podcatcher
git clone https://src.jayvii.de/pub/yt2rss.git
Home | Log | Files | Exports | Refs | Submodules | README | LICENSE | RSS

commit f48e82bf1c36f5b86dc1f7a11a4ac71e80984d99
parent a544924d0e8284cbf26882b468252868a05968dd
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date:   Sat, 30 May 2026 21:27:50 +0200

fix: close regex filter

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

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