Skip to content

Commit 5323928

Browse files
committed
fix(local-variables): Refine condition for skipping out-of-app frames in local variables integration
1 parent 7ca795c commit 5323928

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/node-core/src/integrations/local-variables/local-variables-sync.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ const _localVariablesSyncIntegration = ((
270270
// We need to have vars to add
271271
cachedFrameVariable.vars === undefined ||
272272
// Only skip out-of-app frames if includeOutOfAppFrames is not true
273-
(!frameVariable.in_app && !options.includeOutOfAppFrames) ||
273+
(frameVariable.in_app === false && options.includeOutOfAppFrames !== true) ||
274274
// The function names need to match
275275
!functionNamesMatch(frameVariable.function, cachedFrameVariable.function)
276276
) {

0 commit comments

Comments
 (0)