Skip to content

Commit

Permalink
fix(firebase_performance): Fix firebase_performance not recording res…
Browse files Browse the repository at this point in the history
…ponse payload size on Android. (#8154)

Co-authored-by: Russell Wheatley <russellwheatley85@gmail.com>
  • Loading branch information
santiagogarcia97 and russellwheatley committed Feb 24, 2022
1 parent 123fa6b commit 46d8bc0
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -56,7 +56,7 @@ private void stop(MethodCall call, MethodChannel.Result result) {
httpMetric.setResponseContentType(responseContentType);
}
if (responsePayloadSize != null) {
httpMetric.setRequestPayloadSize(responsePayloadSize);
httpMetric.setResponsePayloadSize(responsePayloadSize);
}

for (String key : attributes.keySet()) {
Expand Down

0 comments on commit 46d8bc0

Please sign in to comment.