From 1cae4c754b725af7c5b5aea58467f18823e917eb Mon Sep 17 00:00:00 2001 From: Maarten Billemont Date: Fri, 22 May 2020 22:26:18 -0400 Subject: [PATCH] Group MPErrors together, ignoring the actual inline values. --- platform-darwin/Source/MPTypes.h | 1 + 1 file changed, 1 insertion(+) diff --git a/platform-darwin/Source/MPTypes.h b/platform-darwin/Source/MPTypes.h index cf76762b..cccdaceb 100644 --- a/platform-darwin/Source/MPTypes.h +++ b/platform-darwin/Source/MPTypes.h @@ -43,6 +43,7 @@ __END_DECLS SentryEvent *event = [[SentryEvent alloc] initWithLevel:kSentryLevelError]; \ event.message = strf( message_ @": %@", ##__VA_ARGS__, [__error localizedDescription]); \ event.logger = @"MPError"; \ + event.fingerprint = @[ message_, __error.domain, @(__error.code) ]; \ [SentrySDK captureEvent:event]; \ } \ __error; \