mirror of
https://github.com/g4klx/MMDVMHost.git
synced 2026-01-11 19:10:03 +01:00
Do duplicate removal by sequence number always.
This commit is contained in:
parent
05e08a232f
commit
45bc8c736e
|
|
@ -395,8 +395,7 @@ void CYSFControl::writeNetwork()
|
|||
m_netSeqNo = 0U;
|
||||
} else {
|
||||
// Check for duplicate frames, if we can
|
||||
// XXX this needs changing in the future
|
||||
if (m_netSeqNo == data[34U] && m_netSeqNo != 0U) {
|
||||
if (m_netSeqNo == data[34U]) {
|
||||
LogDebug("YSF, removing network duplicate, seq %u", data[34U] >> 1);
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue