mirror of
https://github.com/oe7drt/YSFClients.git
synced 2026-01-03 07:00:07 +01:00
Fix the reflector data distribution.
This commit is contained in:
parent
6311a96f30
commit
1f00d67004
|
|
@ -253,7 +253,7 @@ void CYSFReflector::run()
|
|||
watchdogTimer.start();
|
||||
|
||||
for (std::vector<CYSFRepeater*>::const_iterator it = m_repeaters.begin(); it != m_repeaters.end(); ++it) {
|
||||
if ((*it)->m_address.s_addr != address.s_addr && (*it)->m_port != port)
|
||||
if ((*it)->m_address.s_addr != address.s_addr || (*it)->m_port != port)
|
||||
network.writeData(buffer, (*it)->m_address, (*it)->m_port);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue