mirror of
https://github.com/Readarr/Readarr
synced 2025-12-17 22:03:05 +01:00
Fixed: Group sentry NRE events across platforms
This commit is contained in:
parent
1c63b04eb3
commit
26d1d78204
1 changed files with 2 additions and 1 deletions
|
|
@ -267,7 +267,8 @@ protected override void Write(LogEventInfo logEvent)
|
|||
|
||||
if (message.IsNotNullOrWhiteSpace() && message.Length < 200)
|
||||
{
|
||||
sentryFingerprint.Add(message);
|
||||
// Windows gives a trailing '.' for NullReferenceException but mono doesn't
|
||||
sentryFingerprint.Add(message.TrimEnd('.'));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue