Skip to content

Commit 318d81d

Browse files
committed
Remove double computation of the RUM payload
1 parent 5a98bd8 commit 318d81d

File tree

1 file changed

+1
-6
lines changed
  • features/dd-sdk-android-rum/src/main/kotlin/com/datadog/android/rum/internal/net

1 file changed

+1
-6
lines changed

Diff for: features/dd-sdk-android-rum/src/main/kotlin/com/datadog/android/rum/internal/net/RumRequestFactory.kt

+1-6
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,7 @@ internal class RumRequestFactory(
5151
idempotencyKey,
5252
context
5353
),
54-
body = viewEventFilter.filterOutRedundantViewEvents(batchData)
55-
.map { it.data }
56-
.join(
57-
separator = PAYLOAD_SEPARATOR,
58-
internalLogger = internalLogger
59-
),
54+
body = body,
6055
contentType = RequestFactory.CONTENT_TYPE_TEXT_UTF8
6156
)
6257
}

0 commit comments

Comments
 (0)