-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
bugSomething isn't workingSomething isn't working
Description
WriteResponse currently can contain variables with the incorrect type representation. For example if you have a variable num of type UDINT.
{
"type": "write",
"data": {
"num": 52,
}
{
"type": "writeresponse",
"data": {
"num": 52,
}
as it should but...
{
"type": "write",
"data": {
"num": "52",
}
{
"type": "writeresponse",
"data": {
"num": "52",
}
This is incorrect, the write response as the server should always respond with the the value and the correct type. I would expect:
{
"type": "write",
"data": {
"num": "52",
}
{
"type": "writeresponse",
"data": {
"num": 52,
}
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working