1
0
Fork 0

universes with no active slots aren't sent, so don't announce

This commit is contained in:
Kevin Matz 2021-09-08 09:54:26 -04:00
parent 85e85edbbd
commit 719eca89d7
1 changed files with 2 additions and 0 deletions

View File

@ -132,6 +132,8 @@ void Source::discoveryAnnounce()
universes_mutext_.lock();
for (const auto & [num, univ] : universes_)
{
if (!univ->activeSlots())
continue;
if (univ->provenance()->options.stream_terminated)
continue;
if (univ->destination.type != ACN::SDT::SDT_ADDR_NULL)