From 7ca230a9c6b11645e062633fd34571d24cb57a30 Mon Sep 17 00:00:00 2001 From: Gijs Weterings Date: Wed, 30 Oct 2019 08:25:22 -0700 Subject: [PATCH] MVP of filtering errors based on crash reason field Summary: Minimal change to be able to filter crashes in the notifications tab, to filter out recurring/irrelevant crashes such as the one in https://github.com/facebook/flipper/issues/609 Reviewed By: passy Differential Revision: D18223356 fbshipit-source-id: 8cf2187d53c9fec98c9a35edefb0da5783fe7c8e --- src/plugins/crash_reporter/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/crash_reporter/index.js b/src/plugins/crash_reporter/index.js index fc10ca214..580ca38d2 100644 --- a/src/plugins/crash_reporter/index.js +++ b/src/plugins/crash_reporter/index.js @@ -582,6 +582,7 @@ export default class CrashReporterPlugin extends FlipperDevicePlugin< severity: 'error', title: title, action: id, + category: crash.reason || 'Unknown reason', }; }); };