File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
sentry-android-replay/src/main/java/io/sentry/android/replay Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 55### Fixes
66
77- Use logger from options for JVM profiler ([#4771](https://github.com/getsentry/sentry-java/pull/4771))
8+ - Session Replay: Avoid deadlock when pausing replay if no connection ([#4788](https://github.com/getsentry/sentry-java/pull/4788))
89
910### Miscellaneous
1011
Original file line number Diff line number Diff line change @@ -307,15 +307,13 @@ public class ReplayIntegration(
307307 scopes?.configureScope { screen = it.screen?.substringAfterLast(' .' ) }
308308 captureStrategy?.onScreenshotRecorded(bitmap) { frameTimeStamp ->
309309 addFrame(bitmap, frameTimeStamp, screen)
310- checkCanRecord()
311310 }
311+ checkCanRecord()
312312 }
313313
314314 override fun onScreenshotRecorded (screenshot : File , frameTimestamp : Long ) {
315- captureStrategy?.onScreenshotRecorded { _ ->
316- addFrame(screenshot, frameTimestamp)
317- checkCanRecord()
318- }
315+ captureStrategy?.onScreenshotRecorded { _ -> addFrame(screenshot, frameTimestamp) }
316+ checkCanRecord()
319317 }
320318
321319 override fun close () {
You can’t perform that action at this time.
0 commit comments