mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-07-02 10:38:16 +00:00
fix: invert condition for system_url validation in MobileControlSystemController
Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
parent
507130c1ae
commit
1b32761e8e
1 changed files with 1 additions and 1 deletions
|
|
@ -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."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue