From 7d04fbaba29b7c55a40edce169cb37c3251121f2 Mon Sep 17 00:00:00 2001 From: James Ide Date: Tue, 5 Sep 2017 09:48:19 -0700 Subject: [PATCH] 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 --- React/Base/RCTMultipartStreamReader.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/React/Base/RCTMultipartStreamReader.m b/React/Base/RCTMultipartStreamReader.m index 529c595aef..ad8c24c6dd 100644 --- a/React/Base/RCTMultipartStreamReader.m +++ b/React/Base/RCTMultipartStreamReader.m @@ -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));