diff --git a/website/channels.php b/website/channels.php index b4b6c9a..3cf3936 100644 --- a/website/channels.php +++ b/website/channels.php @@ -14,12 +14,10 @@ $uri = $_SERVER['REQUEST_URI']; $uri = str_replace('/channels/', '', $uri); + $uri = str_replace('/', '#', $uri); $uri = "/mnt/HDD0/YouTube_captions_search_engine/channels/$uri"; - if (str_contains('/', $uri)) { - $uri = str_replace('/', '#', $uri); - header('Content-Type: application/json; charset=UTF-8'); - echo file_get_contents("zip://$uri"); - } else { - header("Content-Type: application/zip"); - echo readfile($uri); - } + header('Content-Type: application/json; charset=UTF-8'); + $content = file_get_contents("zip://$uri"); + echo stripFirstLine($content); + +?>