From 0dc16977a54521f362ae57a643e601e86000a909 Mon Sep 17 00:00:00 2001 From: Manuel <30572287+manuel-rw@users.noreply.github.com> Date: Tue, 16 Jan 2024 20:23:22 +0100 Subject: [PATCH] fix: attempt to fix ping redirects (#1829) --- src/server/api/routers/app.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/server/api/routers/app.ts b/src/server/api/routers/app.ts index 29f37881a..48ecd1bb5 100644 --- a/src/server/api/routers/app.ts +++ b/src/server/api/routers/app.ts @@ -45,11 +45,6 @@ export const appRouter = createTRPCRouter({ return await axios .get(app.url, { - method: 'GET', - headers: { - // Cache for 5 minutes - 'Cache-Control': 'max-age=300', - }, httpsAgent: agent, timeout: 12 * 1000, // 12 seconds })