Reset branch back to latest DEVELOPMENT head

This commit is contained in:
Jonathan Arndt
2021-03-10 21:34:19 -08:00
parent f74fa35ca4
commit 921819592e
7 changed files with 106 additions and 20 deletions

View File

@@ -47,7 +47,7 @@ namespace PepperDash.Essentials.Core.Utilities
/// </summary>
public void StartSequence()
{
if (_worker.ThreadState == Thread.eThreadStates.ThreadRunning)
if (_worker !=null && _worker.ThreadState == Thread.eThreadStates.ThreadRunning)
{
Debug.Console(1, this, "Thread already running. Cannot Start Sequence");
return;