return cookie again in authOK

the calling code did require that authOK returns the cookie if
there is a valid one

make it now very explicit that the cookie gets returned instead
of using implicit short-circuit behaviour

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2020-05-25 13:46:54 +02:00 committed by Thomas Lamprecht
parent ac6184986c
commit 2561610c8e

View File

@ -208,7 +208,11 @@ Ext.define('Proxmox.Utils', { utilities: {
return undefined; return undefined;
} }
let cookie = Ext.util.Cookies.get(Proxmox.Setup.auth_cookie_name); let cookie = Ext.util.Cookies.get(Proxmox.Setup.auth_cookie_name);
return (Proxmox.UserName !== '') && (cookie && !cookie.startsWith("PVE:tfa!")); if (Proxmox.UserName !== '' && cookie && !cookie.startsWith("PVE:tfa!")) {
return cookie;
} else {
return false;
}
}, },
authClear: function() { authClear: function() {