fix: invert condition for system_url validation in MobileControlSystemController

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Neil Dorin 2026-05-05 13:45:17 -06:00
parent 507130c1ae
commit 1b32761e8e

View file

@ -137,7 +137,7 @@ namespace PepperDash.Essentials
"No system_url value defined in config. Checking for value from SIMPL Bridge."
);
if (!string.IsNullOrEmpty(SystemUrl))
if (string.IsNullOrEmpty(SystemUrl))
{
this.LogError(
"No system_url value defined in config or SIMPL Bridge. Unable to connect to Mobile Control."