diff --git a/apps/whattheduck/src/App.vue b/apps/whattheduck/src/App.vue index 3e1671140..94a46fea2 100644 --- a/apps/whattheduck/src/App.vue +++ b/apps/whattheduck/src/App.vue @@ -116,6 +116,7 @@ const updateBundle = async () => { await CapacitorUpdater.set(bundleInfo); } } catch (e) { + console.log('getBundleUrl failed', e); const { error, errorDetails } = e as unknown as { error: string; errorDetails: string }; switch (error) { case 'Already up to date': diff --git a/apps/whattheduck/src/main.ts b/apps/whattheduck/src/main.ts index 650fdff85..3e6fb031d 100644 --- a/apps/whattheduck/src/main.ts +++ b/apps/whattheduck/src/main.ts @@ -65,7 +65,7 @@ router.isReady().then(async () => { dist: currentBundleVersion, integrations: [Sentry.browserTracingIntegration(), Sentry.replayIntegration()], tracesSampleRate: 1.0, - replaysSessionSampleRate: 0.1, + replaysSessionSampleRate: 1.0, replaysOnErrorSampleRate: 1.0, }, SentryVue.init,