diff --git a/frigate/data_processing/common/license_plate/mixin.py b/frigate/data_processing/common/license_plate/mixin.py index 09c5300d5..5ff1ad681 100644 --- a/frigate/data_processing/common/license_plate/mixin.py +++ b/frigate/data_processing/common/license_plate/mixin.py @@ -1396,12 +1396,7 @@ class LicensePlateProcessingMixin: ) # don't overwrite sub label for objects that have a sub label - # that is not a license plate - if ( - sub_label is not None - and obj_data.get("sub_label") is not None - and id not in self.detected_license_plates - ): + if sub_label is not None and obj_data.get("sub_label") is not None: logger.debug( f"{camera}: Not overwriting sub label for recognized license plate due to existing sub label: {obj_data.get('sub_label')}." )