From 8cdd4c7cbb19331c80458675ecc79352480c67cd Mon Sep 17 00:00:00 2001 From: localhost Date: Sat, 1 Nov 2025 22:13:41 +0100 Subject: [PATCH] enable manual analytics for 404 video pages, debugging weird behaviour --- src/router/video.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/router/video.ts b/src/router/video.ts index b87a282..13711af 100644 --- a/src/router/video.ts +++ b/src/router/video.ts @@ -37,7 +37,8 @@ app.get('/watch', async ({ query: { v }, set, redirect, error }) => { const html = await m(eta.render('./watch', { isMissing: true, id: v, - title: 'Video Not Found | PreserveTube' + title: 'Video Not Found | PreserveTube', + manualAnalytics: true })) set.headers['cache-control'] = 'public, no-cache'