mirror of
https://github.com/PepperDash/PepperDashCore.git
synced 2026-04-13 04:26:31 +00:00
fixes conditional for turning debugging off
This commit is contained in:
parent
91abd2dd10
commit
e3c5f101bc
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ namespace PepperDash.Core
|
|||
/// <param name="minutes"></param>
|
||||
public void SetDebuggingWithSpecificTimeout(eStreamDebuggingSetting setting, uint minutes)
|
||||
{
|
||||
if ((setting & eStreamDebuggingSetting.Off) == eStreamDebuggingSetting.Off)
|
||||
if (setting == eStreamDebuggingSetting.Off)
|
||||
{
|
||||
DisableDebugging();
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue