Fix sending multiple FilterListReq mac-commands.

This commit is contained in:
Orne Brocaar 2023-07-13 12:26:03 +01:00
parent 57ab993a88
commit 3f8f746dc5

View File

@ -1788,6 +1788,11 @@ impl Data {
dev_eui: device.dev_eui.to_vec(), dev_eui: device.dev_eui.to_vec(),
provisioned: false, provisioned: false,
}); });
// Return because we can't add multiple sets and if we would combine
// multiple commands as a single set, it might not fit in a single
// downlink.
return Ok(());
} }
} }