From 0581366789ef4ac39347c58bc19b0a1c34c693da Mon Sep 17 00:00:00 2001 From: jp112sdl Date: Tue, 16 Jan 2024 09:17:58 +0100 Subject: [PATCH] fixes #316 --- MultiChannelDevice.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MultiChannelDevice.h b/MultiChannelDevice.h index 015c7d87..04c43af3 100644 --- a/MultiChannelDevice.h +++ b/MultiChannelDevice.h @@ -246,7 +246,7 @@ class ChannelDevice : public Device { // ignore repeated messages and store info if the last message came from same device uint8_t samefromID = (lastdev == msg.from()); - if (msg.isRepeated() && samefromID && lastcnt == msg.count()) { + if (samefromID && lastcnt == msg.count()) { return false; } lastdev = msg.from();