Fixed session key rotation problem with a default empty array on null value. (#5896)

master
SamTV12345 2023-08-29 18:00:14 +02:00 committed by SamTV12345
parent b1c34b5dac
commit 4835c8e04d
No known key found for this signature in database
GPG Key ID: E63EEC7466038043
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ class SecretRotator {
// TODO: This is racy. If two instances start up at the same time and there are no existing
// matching publications, each will generate and publish their own paramters. In practice this
// is unlikely to happen, and if it does it can be fixed by restarting both Etherpad instances.
const dbKeys = await db.findKeys(`${this._dbPrefix}:*`, null);
const dbKeys = await db.findKeys(`${this._dbPrefix}:*`, null) || [];
let currentParams = null;
let currentId = null;
const dbWrites = [];