diff --git a/apps/api/src/proxy/proxy.controller.ts b/apps/api/src/proxy/proxy.controller.ts index 41f902e..44c9289 100644 --- a/apps/api/src/proxy/proxy.controller.ts +++ b/apps/api/src/proxy/proxy.controller.ts @@ -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) {