diff --git a/server/bunny.ts b/server/bunny.ts index 7b890ea..a09f8c4 100644 --- a/server/bunny.ts +++ b/server/bunny.ts @@ -95,17 +95,8 @@ export class BunnyService { } } - // Extract category from bunnyVideo.category or metaTags - let category = bunnyVideo.category || ""; - if (!category && bunnyVideo.metaTags && bunnyVideo.metaTags.length > 0) { - const categoryTag = bunnyVideo.metaTags.find((tag: any) => - tag.property?.toLowerCase().includes('category') || - tag.property?.toLowerCase().includes('genre') - ); - if (categoryTag) { - category = categoryTag.value; - } - } + // No category from Bunny.net - keeping category empty + const category = ""; // No tags from Bunny.net - keeping tags empty const tags: string[] = [];