store pornhub gallery results into redis only if search is not empty
This commit is contained in:
parent
120be7734c
commit
039f70c086
|
@ -51,7 +51,9 @@ export const fetchPornHubGalleryData = async (params?: FetchParams): Promise<Gal
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
await storeDataIntoRedis(queryUrl, data, DEFAULT_PORNHUB_GALLERY_EXPIRY);
|
if (data.length > 0) {
|
||||||
|
await storeDataIntoRedis(queryUrl, data, DEFAULT_PORNHUB_GALLERY_EXPIRY);
|
||||||
|
}
|
||||||
|
|
||||||
}).catch((error: AxiosError) => {
|
}).catch((error: AxiosError) => {
|
||||||
// handle errors
|
// handle errors
|
||||||
|
|
Loading…
Reference in New Issue