diff --git a/server/bunny.ts b/server/bunny.ts index b29696a..7b890ea 100644 --- a/server/bunny.ts +++ b/server/bunny.ts @@ -107,18 +107,8 @@ export class BunnyService { } } - // Extract tags from metaTags + // No tags from Bunny.net - keeping tags empty const tags: string[] = []; - if (bunnyVideo.metaTags && bunnyVideo.metaTags.length > 0) { - bunnyVideo.metaTags.forEach((tag: any) => { - if (tag.property?.toLowerCase().includes('tag') || - tag.property?.toLowerCase().includes('keyword')) { - // Split comma-separated tags and clean them up - const tagValues = tag.value.split(',').map((t: string) => t.trim()).filter(Boolean); - tags.push(...tagValues); - } - }); - } return { id: bunnyVideo.guid,