Skip to content

Commit

Permalink
Fix end events for mqtt (blakeblackshear#4647)
Browse files Browse the repository at this point in the history
  • Loading branch information
NickM-27 committed Dec 9, 2022
1 parent fee3418 commit bc52fc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frigate/object_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ def end(camera, obj: TrackedObject, current_frame_time):
"after": obj.to_dict(),
"type": "end",
}
self.dispatcher.publish("/events", json.dumps(message), retain=False)
self.dispatcher.publish("events", json.dumps(message), retain=False)

self.event_queue.put(("end", camera, obj.to_dict(include_thumbnail=True)))

Expand Down

0 comments on commit bc52fc1

Please sign in to comment.