From 8deee70d4a0cb3e5480d268e5ae93f1b1abfaadd Mon Sep 17 00:00:00 2001 From: legop3 Date: Tue, 28 Apr 2026 19:58:12 -0400 Subject: [PATCH] fixe --- server/src/services/embedService/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/services/embedService/index.js b/server/src/services/embedService/index.js index e93fbb53..fef6a627 100644 --- a/server/src/services/embedService/index.js +++ b/server/src/services/embedService/index.js @@ -12,8 +12,8 @@ const { getRoomCameras } = require('../roomCameraService'); const { getRoomCameraState } = require('../roomCameraSnapshotService'); const { loadConfig } = require('../../helpers/configLoader'); -const INDEX_HTML_PATH = path.join(__dirname, '..', '..', 'public', 'index.html'); -const BITMAP_PATH = path.join(__dirname, '..', '..', 'public', 'bitmap.png'); +const INDEX_HTML_PATH = path.join(__dirname, '..', '..', '..', 'public', 'index.html'); +const BITMAP_PATH = path.join(__dirname, '..', '..', '..', 'public', 'bitmap.png'); const OG_WIDTH = 1200; const OG_HEIGHT = 630;