This commit is contained in:
Adria Navarro 2024-03-05 17:57:28 +01:00
parent 8f9e8b60c3
commit f2330144de
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ class RedisWrapper {
end end
` `
const keys = Object.keys(dataToStore) const keys = Object.keys(dataToStore)
let values = Object.values(dataToStore) const values = Object.values(dataToStore)
if (expirySeconds !== null) { if (expirySeconds !== null) {
values.push(expirySeconds) values.push(expirySeconds)
} }