Skip to content
Open
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
3 changes: 3 additions & 0 deletions openlcb/datagramservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,9 @@ def handleDatagramReceivedOK(self, message: Message):
# match to the memo and remove from queue
memo = self.matchToWriteMemo(message) # type: DatagramWriteMemo|None

# check for whether a match was found, indicating this was for us
if memo is None : return

# check of tracking logic
if self.currentOutstandingMemo != memo:
logger.error(
Expand Down
Loading