You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The above line removes the last character of the string. In the case of a JSON response, the closing } is removed, resulting in a malformed JSON string. This causes the Native Messaging Extension on Firefox to fail when attempting to parse the response.
As a workaround, removing the - 1 solves the problem. I've tested this fix and it now seems to interact correctly with the Signing Box.
The text was updated successfully, but these errors were encountered:
Hi,
When I manually compile the beidconnect executable under Linux:
I am unable to use the compiled binary to interact with the signing web app.
I noticed that the
sendMessage()
function truncates the last character of the response:fts-beidconnect/common/comm.cpp
Line 89 in b44810e
The above line removes the last character of the string. In the case of a JSON response, the closing
}
is removed, resulting in a malformed JSON string. This causes the Native Messaging Extension on Firefox to fail when attempting to parse the response.As a workaround, removing the
- 1
solves the problem. I've tested this fix and it now seems to interact correctly with the Signing Box.The text was updated successfully, but these errors were encountered: