From 008110b015c426e542870531e122faeeff6caaff Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Fri, 3 Apr 2026 17:25:26 +0200 Subject: [PATCH] Refactor Sentry tags for Android app info --- web/pages/_app.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/pages/_app.tsx b/web/pages/_app.tsx index 16a3f076..131aae9e 100644 --- a/web/pages/_app.tsx +++ b/web/pages/_app.tsx @@ -174,8 +174,8 @@ function MyApp(props: AppProps) { const appInfo = await App.getInfo().catch((e) => debug('Could not load Android app info:', e)) const appVersion = appInfo?.version if (appVersion) { - Sentry.setTag('android_version', appVersion) - Sentry.setTag('android_build_number', appInfo?.build) + Sentry.setTag('androidApp.version', appVersion) + Sentry.setTag('androidApp.buildNumber', appInfo?.build) } } fetchAppInfo()