1
0
Fork 0

never add a universe for discovery

This commit is contained in:
Kevin Matz 2022-11-19 17:22:03 -05:00
parent 99d919d613
commit b26bf158c0
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ bool Receiver::isEnabledHoldLastLook() const
*/
void Receiver::subscribe(const uint16_t num)
{
if (universes_.count(num))
if (num == sACN::E131_DISCOVERY_UNIVERSE || universes_.count(num))
return;
universes_.emplace(num, std::make_shared<ArbitratingUniverse>());
universes_.at(num)->expectedUniverse = num;