fix merge conflicts

This commit is contained in:
Josh Hawkins 2024-09-24 08:22:48 -05:00
parent fc6d0aeccb
commit 018502b283
2 changed files with 7 additions and 0 deletions

View File

@ -926,6 +926,12 @@ def set_description(
ids=[id], ids=[id],
) )
response_message = (
f"Event {id} description is now blank"
if new_description is None or len(new_description) == 0
else f"Event {id} description set to {new_description}"
)
return JSONResponse( return JSONResponse(
content=( content=(
{ {

View File

@ -663,6 +663,7 @@ class FrigateApp:
self.onvif_controller, self.onvif_controller,
self.external_event_processor, self.external_event_processor,
self.stats_emitter, self.stats_emitter,
self.event_metadata_updater,
), ),
host="127.0.0.1", host="127.0.0.1",
port=5001, port=5001,