Remove message

This commit is contained in:
Nicolas Mowen 2025-08-09 13:23:47 -06:00
parent bd08b7d0bb
commit 1452c61378
2 changed files with 2 additions and 2 deletions

View File

@ -378,7 +378,7 @@ class WebPushClient(Communicator):
message = f"Detected on {titlecase(camera.replace('_', ' '))}"
if ended:
print(f"sending a message with message {message}")
logger.debug(f"Sending a notification with state {state} and message {message}")
# if event is ongoing open to live view otherwise open to recordings view
direct_url = f"/review?id={reviewId}" if ended else f"/#{camera}"

View File

@ -4,7 +4,7 @@ import { defineConfig } from "vite";
import react from "@vitejs/plugin-react-swc";
import monacoEditorPlugin from "vite-plugin-monaco-editor";
const proxyHost = process.env.PROXY_HOST || "192.168.50.106:5002";
const proxyHost = process.env.PROXY_HOST || "localhost:5000";
// https://vitejs.dev/config/
export default defineConfig({