From 534b2b3869b9fbbc7313609b96c0087ed06c2a55 Mon Sep 17 00:00:00 2001 From: alan Date: Thu, 26 Dec 2019 10:44:55 -0800 Subject: [PATCH] turn default for dedupe to False --- frigate/video.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/video.py b/frigate/video.py index 978e69c0a..04ec22c23 100644 --- a/frigate/video.py +++ b/frigate/video.py @@ -131,7 +131,7 @@ class Camera: self.mqtt_client = mqtt_client self.mqtt_topic_prefix = '{}/{}'.format(mqtt_prefix, self.name) self.label = config.get('label', 'person') - self.dedupe_snapshot_publish = config.get('dedupe_snapshot_publish', True) + self.dedupe_snapshot_publish = config.get('dedupe_snapshot_publish', False) # create a numpy array for the current frame in initialize to zeros self.current_frame = np.zeros(self.frame_shape, np.uint8)