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.
1 parent 7ca795c commit 5323928Copy full SHA for 5323928
packages/node-core/src/integrations/local-variables/local-variables-sync.ts
@@ -270,7 +270,7 @@ const _localVariablesSyncIntegration = ((
270
// We need to have vars to add
271
cachedFrameVariable.vars === undefined ||
272
// Only skip out-of-app frames if includeOutOfAppFrames is not true
273
- (!frameVariable.in_app && !options.includeOutOfAppFrames) ||
+ (frameVariable.in_app === false && options.includeOutOfAppFrames !== true) ||
274
// The function names need to match
275
!functionNamesMatch(frameVariable.function, cachedFrameVariable.function)
276
) {
0 commit comments