mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-31 04:00:18 -07: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 @@ namespace NzbDrone.Common.Instrumentation.Sentry
|
||||||
|
|
||||||
if (message.IsNotNullOrWhiteSpace() && message.Length < 200)
|
if (message.IsNotNullOrWhiteSpace() && message.Length < 200)
|
||||||
{
|
{
|
||||||
sentryFingerprint.Add(message);
|
// Windows gives a trailing '.' for NullReferenceException but mono doesn't
|
||||||
|
sentryFingerprint.Add(message.TrimEnd('.'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue