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