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
This commit is contained in:
parent
e7fe1e6016
commit
7182ef47e4
@ -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 " - ")
|
||||
|
||||
Loading…
Reference in New Issue
Block a user