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 dd195c3 commit cea603eCopy full SHA for cea603e
library/src/main/java/com/qiniu/android/http/metrics/UploadSingleRequestMetrics.java
@@ -87,7 +87,7 @@ public long totalBytes(){
87
return (headerLength + bodyLength);
88
}
89
public Long bytesSend(){
90
- long totalBytes = totalBytes().longValue();
+ long totalBytes = totalBytes();
91
long bytesSend = countOfRequestHeaderBytesSent + countOfRequestBodyBytesSent;
92
if (bytesSend > totalBytes){
93
bytesSend = totalBytes;
0 commit comments