revert simpify crash report trail text generation

This commit is contained in:
pa
2026-01-10 17:36:38 +09:00
committed by Natsumi
parent ffb091e4a9
commit a4ae75319b
2 changed files with 10 additions and 116 deletions
+1 -9
View File
@@ -543,15 +543,7 @@ export const useVrcxStore = defineStore('Vrcx', () => {
}
return ts.isAfter(cutoff) || ts.isSame(cutoff);
});
const trailText = trail
.map((entry) => {
const t = dayjs(entry.ts).format('HH:mm:ss');
const a = entry.action ?? '';
if (!a) return t;
return `${t} ${a}`;
})
.filter(Boolean)
.join(';');
const trailText = JSON.stringify(trail);
Sentry.withScope((scope) => {
scope.setLevel('fatal');
scope.setTag('reason', 'crash-recovery');