Typo in auth.js?
originalfoo opened this issue · 1 comments
originalfoo commented
https://github.com/totaljs/modules/blob/master/Security/auth/auth.js#L61
// currently:
if (!user || !options.autoLogin) {
// shouldn't it be:
if (!user && !options.autoLogin) {
?
originalfoo commented
Ah, ignore me, misread the code.