Skip to content

Commit f37baf1

Browse files
authored
Merge pull request #2528 from DataDog/nogorodnikov/remove-double-body-computation-in-rum-upload
Remove double computation of the RUM payload
2 parents 32d2f9a + 318d81d commit f37baf1

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

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)