This commit is contained in:
Adria Navarro 2023-09-18 12:44:58 +02:00
parent 14d5f551c3
commit 10fe86e30d
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ class RedisWrapper {
const prefixedKeys = keys.map(key => addDbPrefix(db, key))
let response = await this.getClient().mget(prefixedKeys)
if (Array.isArray(response)) {
let final: any = {}
let final: Record<string, any> = {}
let count = 0
for (let result of response) {
if (result) {