diff --git a/platypush/plugins/bluetooth/_ble/_event_handler.py b/platypush/plugins/bluetooth/_ble/_event_handler.py index ecd430e8..a2bfeb8a 100644 --- a/platypush/plugins/bluetooth/_ble/_event_handler.py +++ b/platypush/plugins/bluetooth/_ble/_event_handler.py @@ -183,7 +183,10 @@ class EventHandler: return False # If the manufacturer is in the excluded list, we should skip it - if device.manufacturer in _excluded_manufacturers: + if ( + device.manufacturer in _excluded_manufacturers + or device.model in _excluded_manufacturers + ): return True # If the device has any children other than services, don't skip it