Skip to content
Snippets Groups Projects
Verified Commit f89c4387 authored by aguestuser's avatar aguestuser
Browse files

[hf] safely destructure identity failure errors

* BUG SYMPTOM: some send response handlers error when they try to
  destructure a null `data` field
* CAUSE: the `{identityFailure}` destructuring assignment unsafely
  assumes that all `send_message` values will have a `data` field on
  which we can call `data[0]`
* FIX: don't assume anything about the shape of the `data`
  field. extract `identityFailure` from it (if it is there) with a
  lodash `get` call to the full path to the field we are trying
  to (conditionally) extract
parent ffc62faa
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment