Refactor redis calls.

This commit is contained in:
Mike Cao 2022-10-25 20:17:13 -07:00
parent 7f3db334f5
commit d05fd2bd3d
7 changed files with 15 additions and 15 deletions

View file

@ -39,7 +39,7 @@ export async function deleteAccount(userId) {
}),
])
.then(async res => {
if (redis.client) {
if (redis.enabled) {
for (let i = 0; i < websiteUuids.length; i++) {
await redis.set(`website:${websiteUuids[i]}`, DELETED);
}