frigate_plate_recognizer icon indicating copy to clipboard operation
frigate_plate_recognizer copied to clipboard

Watched plates returns None ?

Open atv2016 opened this issue 11 months ago • 0 comments

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 ?

atv2016 avatar Mar 13 '24 14:03 atv2016