frigate_plate_recognizer
frigate_plate_recognizer copied to clipboard
Watched plates returns None ?
https://github.com/ljmerza/frigate_plate_recognizer/blob/4149b315d77310b6045a8dc6f0451e788422c46f/index.py#L150C1-L154C34
#Step 1 - test if top plate is a watched plate
matching_plate = str(plate_number).lower() in config_watched_plates
if matching_plate:
_LOGGER.info(f"Recognised plate is a Watched Plate: {plate_number}")
return None, None, None
Should that not return plate_number ?