From aef9d6e04ac25cbf059192216fbdfd4b6e4ec202 Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Tue, 2 Sep 2025 15:10:58 +0000 Subject: [PATCH] Update video information only in the database Modify the `updateVideo` method in `HybridStorage` to exclusively update video details in the PostgreSQL database, removing the previous logic that also updated the Bunny cache. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 2cd2c0bc-434c-4bc9-ad3f-b99d3897a0d1 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/2cd2c0bc-434c-4bc9-ad3f-b99d3897a0d1/d05DGZF --- server/storage.ts | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/server/storage.ts b/server/storage.ts index 59fcb47..5c45d89 100644 --- a/server/storage.ts +++ b/server/storage.ts @@ -1046,15 +1046,12 @@ export class HybridStorage implements IStorage { } async updateVideo(id: string, video: UpdateVideo): Promise