Unverified Commit 5c73f594 authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #6672 from Vavooon/master

Update hosts list on UDP Configuration creation
parents 40d3d6fd 827d86a0
...@@ -405,6 +405,7 @@ void UDPConfiguration::_copyFrom(LinkConfiguration *source) ...@@ -405,6 +405,7 @@ void UDPConfiguration::_copyFrom(LinkConfiguration *source)
if(!contains_target(_targetHosts, target->address, target->port)) { if(!contains_target(_targetHosts, target->address, target->port)) {
UDPCLient* newTarget = new UDPCLient(target); UDPCLient* newTarget = new UDPCLient(target);
_targetHosts.append(newTarget); _targetHosts.append(newTarget);
_updateHostList();
} }
} }
} else { } else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment