1
0
Fork 0

call discovery callbacks after disabling discovery

This commit is contained in:
Kevin Matz 2022-11-19 17:22:36 -05:00
parent b26bf158c0
commit e14556fe16
1 changed files with 2 additions and 0 deletions

View File

@ -134,6 +134,8 @@ void Receiver::discoveryStop()
unsubscribe(sACN::E131_DISCOVERY_UNIVERSE);
discovery_enabled_ = false;
discovered.clear();
for (const auto& cb : discoveryCallbacks_)
cb();
}