AuthBackend#login()
tries to log in passively regardless of the value of the passive
option
#92
Milestone
AuthBackend#login()
tries to log in passively regardless of the value of the passive
option
#92
The default value of the
passive
option isfalse
:madata/src/auth-backend.js
Line 83 in b97a126
So, Madata shouldn't try to log in passively. However, it does, regardless:
madata/src/auth-backend.js
Line 92 in b97a126
This means that
backend.login()
and (even worse)backend.login({ passive: false })
will throw for every backend that hasn't implementedpassiveLogin()
even if this backend isn't meant to log the user in passively (e.g., for security reasons).The text was updated successfully, but these errors were encountered: