We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 365fdbd + f468429 commit ccb617bCopy full SHA for ccb617b
1 file changed
modules/Sentry/private/StackTraceProcessor.ps1
@@ -62,8 +62,7 @@ class StackTraceProcessor : SentryEventProcessor {
62
63
hidden [bool] ResolveInApp([Sentry.SentryStackFrame] $sentryFrame) {
64
$module = $sentryFrame.Module
65
- # InAppExclude wins, then InAppInclude. Both match against the PowerShell module name we stamped
66
- # onto the frame (see SetModule). Falls back to the PS default: user-script frames (no module)
+ # InAppExclude wins, then InAppInclude. Falls back to the PS default: user-script frames (no module)
67
# are in-app; module frames are not. This default differs from sentry-dotnet because PS module
68
# frames are almost always third-party.
69
if ([StackTraceProcessor]::MatchesAny($this.inAppExclude, $module)) {
0 commit comments