From 51d67a88ffb27bd6038eb8e266c8c5e15f32174d Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Thu, 28 Aug 2025 19:01:13 +0000 Subject: [PATCH] Remove Bunny.net tags extraction from video metadata Modify server/bunny.ts to remove logic for extracting tags from Bunny.net metaTags, as they are not present or relevant for the platform's tagging system. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 2eb1084e-b728-4449-9231-f1665924c8d5 Replit-Commit-Checkpoint-Type: full_checkpoint --- server/bunny.ts | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) 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,