mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
fix redis.client call
This commit is contained in:
parent
f18b5a20e3
commit
f3312732dc
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user