apps\api\src\proxy: fix controller

This commit is contained in:
obarykina 2024-03-27 17:22:07 +03:00
parent fcafe1306d
commit 7882a6ef8c

View File

@ -133,7 +133,7 @@ export class ProxyController {
@Res() reply: FastifyReply,
) {
try {
const value = this.cacheManager.get(queryKey);
const value = await this.cacheManager.get(queryKey);
return reply.send(value);
} catch (error) {