mirror of
https://github.com/umami-software/umami.git
synced 2026-02-07 06:07:17 +01:00
Refactor redis calls.
This commit is contained in:
parent
7f3db334f5
commit
d05fd2bd3d
7 changed files with 15 additions and 15 deletions
|
|
@ -14,8 +14,8 @@ export async function createWebsite(userId, data) {
|
|||
},
|
||||
})
|
||||
.then(async res => {
|
||||
if (redis.client && res) {
|
||||
await redis.client.set(`website:${res.websiteUuid}`, res.id);
|
||||
if (redis.enabled && res) {
|
||||
await redis.set(`website:${res.websiteUuid}`, res.id);
|
||||
}
|
||||
|
||||
return res;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue