From f37992a08930f38e07757e93092e9a241bb997a0 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Wed, 2 Sep 2026 19:08:57 +0200 Subject: [PATCH] fixup! wip --- .../rooms/livekit/components/blur/BackgroundCustomProcessor.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/frontend/src/features/rooms/livekit/components/blur/BackgroundCustomProcessor.ts b/src/frontend/src/features/rooms/livekit/components/blur/BackgroundCustomProcessor.ts index 9cc6706b..f92da928 100644 --- a/src/frontend/src/features/rooms/livekit/components/blur/BackgroundCustomProcessor.ts +++ b/src/frontend/src/features/rooms/livekit/components/blur/BackgroundCustomProcessor.ts @@ -168,7 +168,8 @@ export class BackgroundCustomProcessor implements BackgroundProcessorInterface { image.decode().catch((error) => { reportError('effects_processor_failure', error, { context: 'Failed to load virtual background image', - image_path: this.options.type === 'virtual' ? this.options.imagePath : undefined, + image_path: + this.options.type === 'virtual' ? this.options.imagePath : undefined, }) }) this.virtualBackgroundImage = image