From e0394e4413ebfdb8265b7430dffb2fa739ee29d6 Mon Sep 17 00:00:00 2001 From: Kevin Matz Date: Fri, 2 Dec 2022 15:35:48 -0500 Subject: [PATCH] don't supply and undefined source_name --- protocol/esta/sacn/arbitratinguniverse.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/protocol/esta/sacn/arbitratinguniverse.cpp b/protocol/esta/sacn/arbitratinguniverse.cpp index 121cba3..c2080a2 100644 --- a/protocol/esta/sacn/arbitratinguniverse.cpp +++ b/protocol/esta/sacn/arbitratinguniverse.cpp @@ -209,8 +209,7 @@ std::shared_ptr ArbitratingUniverse::provenance() auto prov = std::make_shared(); prov->universe = expectedUniverse; - prov->priority = 255; // invalid data - prov->source_name = "Pending data..."; + prov->priority = 255; // invalid return prov; }