From 7182ef47e433f9bcd05c929c46f79bbf006268a6 Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Sat, 30 Aug 2025 21:28:47 +0000 Subject: [PATCH] Refine video filtering to exclude specific content types Update the NetflixGrid component to filter out videos with "Gipfelstammtisch" in their titles, in addition to existing "FOLX STADL" exclusions, ensuring only "Geschichte des Liedes" videos are displayed. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 051a65da-1176-4478-a61c-c662f2a15536 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/051a65da-1176-4478-a61c-c662f2a15536/BesXHXW --- client/src/components/netflix-grid.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx index ff310a7..eae5150 100644 --- a/client/src/components/netflix-grid.tsx +++ b/client/src/components/netflix-grid.tsx @@ -62,9 +62,11 @@ export default function NetflixGrid({ videos, isLoading }: NetflixGridProps) { { title: "GDL VIDEO", videos: (() => { - // Filter videos that are NOT FOLX STADL (individual artists) + // Filter videos that are only Geschichte des Liedes (exclude FOLX STADL and Gipfelstammtisch) const artistVideos = videos.filter(video => - !video.title.includes("FOLX STADL") && !video.title.includes("FOLXSTADL") + !video.title.includes("FOLX STADL") && + !video.title.includes("FOLXSTADL") && + !video.title.includes("Gipfelstammtisch") ); // Group by performer/artist (extract performer name before " - ")