fix redis.client call

This commit is contained in:
Brian Cao 2022-08-30 15:54:33 -07:00
parent f18b5a20e3
commit f3312732dc

View File

@ -15,7 +15,7 @@ export async function createWebsite(user_id, data) {
}) })
.then(async res => { .then(async res => {
if (redis.client && res) { if (redis.client && res) {
await redis.set(`website:${res.website_uuid}`, Number(res.website_id)); await redis.client.set(`website:${res.website_uuid}`, res.website_id);
} }
return res; return res;