Skip to content

Commit

Permalink
OPC-DA Client: fix string command.
Browse files Browse the repository at this point in the history
  • Loading branch information
riclolsen committed Aug 2, 2024
1 parent b0562e7 commit 90ad8d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OPC-DA-Client/MongoCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ await collection
case "vt_bstr":
case "bstr":
case "string":
itVal.Value = Convert.ToString(change.FullDocument.value);
itVal.Value = Convert.ToString(change.FullDocument.valueString);
break;
}
itVal.Quality = TsCDaQuality.Good;
Expand Down

0 comments on commit 90ad8d4

Please sign in to comment.