1
0
mirror of https://github.com/advplyr/audiobookshelf.git synced 2025-01-08 00:08:14 +01:00

Fix bug with undefined property

This commit is contained in:
lukeIam 2023-09-16 18:22:11 +00:00
parent 226a774ab9
commit 6aaf3f0f02

View File

@ -235,9 +235,9 @@ class Auth {
*/
async initTokenSecret() {
if (process.env.TOKEN_SECRET) { // User can supply their own token secret
this.db.serverSettings.tokenSecret = process.env.TOKEN_SECRET
global.ServerSettings.tokenSecret = process.env.TOKEN_SECRET
} else {
this.db.serverSettings.tokenSecret = require('crypto').randomBytes(256).toString('base64')
global.ServerSettings.tokenSecret = require('crypto').randomBytes(256).toString('base64')
}
await Database.updateServerSettings()