Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion poller/normalizers/meshtastic_mqtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ async def _handle_telemetry(data: dict, entity_id: str, sender_hex: str) -> None
chan_util = device.get("channel_utilization")
air_util = device.get("air_util_tx")

if not any(v is not None for v in (battery, voltage, chan_util, air_util)):
if battery is None and voltage is None and chan_util is None and air_util is None:
return

identity_update: dict = {"node_id": sender_hex}
Expand Down
Loading