fix: Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Jonathan Arndt 2026-07-30 16:22:30 -07:00 committed by GitHub
parent 1719de195f
commit d21cef0e60
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -35,6 +35,18 @@ namespace PepperDash.Essentials.Touchpanel
/// </summary>
public StatusMonitorBase CommunicationMonitor { get; private set; }
private sealed class NullCommunicationMonitor : StatusMonitorBase
{
public NullCommunicationMonitor(IKeyed parent) : base(parent, 120000, 300000)
{
Status = MonitorStatus.InError;
Message = "Panel is not initialized";
}
public override void Start() { }
public override void Stop() { }
}
private string _appUrl;
/// <summary>