The analyzer has detected a suspicious condition that may contain a copy-paste error.
The example:
if (_id !== id ||
_email !== email ||
_email !== name) { // <=
....
}
The comparison chain contains a typo: the error is in the third line, where the name variable should have been compared to _name, not to _email.
The fixed code:
if (_id !== id ||
_email !== email ||
_email !== name) { // <=
....
}
Was this page helpful?
Your message has been sent. We will email you at
If you do not see the email in your inbox, please check if it is filtered to one of the following folders: