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 way we currently handle non-encrypted notifications in monitor is that monitor_read populates atnotification->value to store the value, since no decryption is needed. Therefore, atnotification->decrypted_value remains null.
The proposed change is to have atnotification->decrypted_value point to atnotification->value, since it is non-encrypted anyways. This is a developer experience change.
The text was updated successfully, but these errors were encountered:
The way we currently handle non-encrypted notifications in monitor is that monitor_read populates
atnotification->value
to store the value, since no decryption is needed. Therefore,atnotification->decrypted_value
remains null.The proposed change is to have
atnotification->decrypted_value
point toatnotification->value
, since it is non-encrypted anyways. This is a developer experience change.The text was updated successfully, but these errors were encountered: