mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-01-31 00:36:16 +00:00
fix jwt error
This commit is contained in:
parent
12910b23ed
commit
ba1d271afa
1 changed files with 1 additions and 1 deletions
|
@ -678,7 +678,7 @@ async function initDatabase() {
|
||||||
|
|
||||||
if (! jwtSecretBean) {
|
if (! jwtSecretBean) {
|
||||||
console.log("JWT secret is not found, generate one.");
|
console.log("JWT secret is not found, generate one.");
|
||||||
jwtSecretBean = initJWTSecret();
|
jwtSecretBean = await initJWTSecret();
|
||||||
console.log("Stored JWT secret into database");
|
console.log("Stored JWT secret into database");
|
||||||
} else {
|
} else {
|
||||||
console.log("Load JWT secret from database.");
|
console.log("Load JWT secret from database.");
|
||||||
|
|
Loading…
Add table
Reference in a new issue