Skip to content

Commit 27e17c1

Browse files
committed
Formatting
1 parent e33b29c commit 27e17c1

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

sentry-android-replay/src/main/java/io/sentry/android/replay/capture/BaseCaptureStrategy.kt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,10 +170,8 @@ internal abstract class BaseCaptureStrategy(
170170

171171
hub?.configureScope { scope ->
172172
scope.breadcrumbs.forEach { breadcrumb ->
173-
if (breadcrumb.timestamp.after(segmentTimestamp) && breadcrumb.timestamp.before(
174-
endTimestamp
175-
)
176-
) {
173+
if (breadcrumb.timestamp.after(segmentTimestamp) &&
174+
breadcrumb.timestamp.before(endTimestamp)) {
177175
// TODO: rework this later when aligned with iOS and frontend
178176
var breadcrumbMessage: String? = null
179177
val breadcrumbCategory: String?

0 commit comments

Comments
 (0)