From 3f8f746dc51df001f4ed2266528bfcda9e510efa Mon Sep 17 00:00:00 2001 From: Orne Brocaar Date: Thu, 13 Jul 2023 12:26:03 +0100 Subject: [PATCH] Fix sending multiple FilterListReq mac-commands. --- chirpstack/src/downlink/data.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/chirpstack/src/downlink/data.rs b/chirpstack/src/downlink/data.rs index 5310ebd2..ee20126d 100644 --- a/chirpstack/src/downlink/data.rs +++ b/chirpstack/src/downlink/data.rs @@ -1788,6 +1788,11 @@ impl Data { dev_eui: device.dev_eui.to_vec(), 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(()); } }