We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Just upgraded the Pubnub from 3.18.4 to direct 6.19.4.
All went well but Fetch history having exeption on decryption.
Same thing worked for nuget 6.19.3.
After checking last commits for 6.19.4 I see exception at this place.
File: src/Api/PubnubApi/Security/SecureMessage.cs Line number: 159
object decodeMessage = jsonLib.DeserializeToObject((decryptMessage == "**DECRYPT ERROR**") ? decryptMessage : decryptMessage);
if there is DECRYPT ERROR, it should not be taking decryptMessage, it should be taking kvpValue.Value.ToString() as its done at other places.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Just upgraded the Pubnub from 3.18.4 to direct 6.19.4.
All went well but Fetch history having exeption on decryption.
Same thing worked for nuget 6.19.3.
After checking last commits for 6.19.4 I see exception at this place.
File: src/Api/PubnubApi/Security/SecureMessage.cs
Line number: 159
object decodeMessage = jsonLib.DeserializeToObject((decryptMessage == "**DECRYPT ERROR**") ? decryptMessage : decryptMessage);
if there is DECRYPT ERROR, it should not be taking decryptMessage, it should be taking kvpValue.Value.ToString() as its done at other places.
The text was updated successfully, but these errors were encountered: