Skip to content

Commit

Permalink
fix: fixes online status parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
aknous committed Jun 14, 2023
1 parent 721d925 commit 6b871ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QscQsysDspPlugin/QscDspCamera.cs
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public void ParseSubscriptionMessage(string customName, string value, string abs
// Check for valid subscription response
Debug.Console(1, this, "CameraOnline {0} Response: '{1}'", customName, value);

if (value == "true")
if (value == "true" || value == "OK")
{
Online = true;

Expand Down

0 comments on commit 6b871ae

Please sign in to comment.