diff --git a/frigate/camera/state.py b/frigate/camera/state.py index fed819154e..ce245c7aa8 100644 --- a/frigate/camera/state.py +++ b/frigate/camera/state.py @@ -396,7 +396,6 @@ class CameraState: "attributes": new_obj.obj_data["attributes"], "current_estimated_speed": 0, "velocity_angle": 0, - "path_data": [], "recognized_license_plate": None, "recognized_license_plate_score": None, } diff --git a/frigate/track/tracked_object.py b/frigate/track/tracked_object.py index 0a9c6f74f0..8150aaf6e7 100644 --- a/frigate/track/tracked_object.py +++ b/frigate/track/tracked_object.py @@ -164,7 +164,6 @@ class TrackedObject: "attributes": obj_data["attributes"], "current_estimated_speed": self.current_estimated_speed, "velocity_angle": self.velocity_angle, - "path_data": self.path_data.copy(), "recognized_license_plate": obj_data.get( "recognized_license_plate" ),