totaljs/modules

Typo in auth.js?

originalfoo opened this issue · 1 comments

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) {

?

Ah, ignore me, misread the code.