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 51cc432 commit 4c7d1a0Copy full SHA for 4c7d1a0
sentry-android-replay/src/main/java/io/sentry/android/replay/capture/BaseCaptureStrategy.kt
@@ -171,7 +171,8 @@ internal abstract class BaseCaptureStrategy(
171
hub?.configureScope { scope ->
172
scope.breadcrumbs.forEach { breadcrumb ->
173
if (breadcrumb.timestamp.after(segmentTimestamp) &&
174
- breadcrumb.timestamp.before(endTimestamp)) {
+ breadcrumb.timestamp.before(endTimestamp)
175
+ ) {
176
// TODO: rework this later when aligned with iOS and frontend
177
var breadcrumbMessage: String? = null
178
val breadcrumbCategory: String?
0 commit comments