mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-01-13 06:48:02 -08:00
linting
This commit is contained in:
parent
b5b391c73b
commit
e223e826a3
|
@ -265,7 +265,8 @@ exports.entryPage = "dashboard";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (data.token) {
|
if (data.token) {
|
||||||
let verify = notp.totp.verify(data.token, user.twofa_secret, {"window": 1, "time": 30});
|
let verify = notp.totp.verify(data.token, user.twofa_secret, { "window": 1,
|
||||||
|
"time": 30 });
|
||||||
|
|
||||||
if (verify && verify.delta == 0) {
|
if (verify && verify.delta == 0) {
|
||||||
callback({
|
callback({
|
||||||
|
@ -383,7 +384,8 @@ exports.entryPage = "dashboard";
|
||||||
socket.userID,
|
socket.userID,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
let verify = notp.totp.verify(token, user.twofa_secret, {"window": 1, "time": 30});
|
let verify = notp.totp.verify(token, user.twofa_secret, { "window": 1,
|
||||||
|
"time": 30 });
|
||||||
|
|
||||||
if (verify && verify.delta == 0) {
|
if (verify && verify.delta == 0) {
|
||||||
callback({
|
callback({
|
||||||
|
|
Loading…
Reference in a new issue