Convey bitfield forward in firmware harness so prehop drop doesn't get mad at us

This commit is contained in:
Ian McEwen
2026-07-22 11:20:19 -07:00
parent 19d066970e
commit 11b71e9587

View File

@@ -351,5 +351,7 @@ def _build_mesh_packet(packet: dict, data: bytes) -> mesh_pb2.MeshPacket:
mp.decoded.request_id = decoded["requestId"]
if "wantResponse" in decoded:
mp.decoded.want_response = decoded["wantResponse"]
if "bitfield" in decoded:
mp.decoded.bitfield = decoded["bitfield"]
return mp