mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-05-16 02:38:29 +08:00
Change intValue -> integerValue in RCTMultipartStreamReader
Summary: We assign the value to an NSInteger so we should convert the NSString to an NSInteger instead of an int. Build the app in Xcode and run it. Closes https://github.com/facebook/react-native/pull/15806 Differential Revision: D5767118 Pulled By: shergin fbshipit-source-id: b310511f13f5f4026d595a219d69811801d313c2
This commit is contained in:
committed by
Facebook Github Bot
parent
efd728ab7e
commit
7d04fbaba2
@@ -76,7 +76,7 @@
|
||||
// Throttle progress events so we don't send more that around 60 per second.
|
||||
CFTimeInterval currentTime = CACurrentMediaTime();
|
||||
|
||||
NSInteger headersContentLength = headers[@"Content-Length"] != nil ? [headers[@"Content-Length"] intValue] : 0;
|
||||
NSInteger headersContentLength = headers[@"Content-Length"] != nil ? [headers[@"Content-Length"] integerValue] : 0;
|
||||
if (callback && (currentTime - _lastDownloadProgress > 0.016 || final)) {
|
||||
_lastDownloadProgress = currentTime;
|
||||
callback(headers, @(headersContentLength), @(contentLength));
|
||||
|
||||
Reference in New Issue
Block a user