We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27f8287 commit 62a51fcCopy full SHA for 62a51fc
platform/jvm/capture/src/main/kotlin/io/bitdrift/capture/events/SessionReplayTarget.kt
@@ -46,8 +46,10 @@ internal class SessionReplayTarget(
46
)
47
48
override fun captureScreen() {
49
- val skipReplayComposeViews = runtime?.isEnabled(RuntimeFeature.SESSION_REPLAY_COMPOSE)
50
- ?: RuntimeFeature.SESSION_REPLAY_COMPOSE.defaultValue
+ val skipReplayComposeViews = !(
+ runtime?.isEnabled(RuntimeFeature.SESSION_REPLAY_COMPOSE)
51
+ ?: RuntimeFeature.SESSION_REPLAY_COMPOSE.defaultValue
52
+ )
53
replayModule.captureScreen(skipReplayComposeViews)
54
}
55
0 commit comments