From af24619592b0f0612bec262e13c8645cd32fb5cd Mon Sep 17 00:00:00 2001 From: Nick Lockwood Date: Tue, 5 Jan 2016 10:00:37 -0800 Subject: [PATCH] Increased RCTInlineValueThreshold for asynclocalstorage Reviewed By: tadeuzagallo Differential Revision: D2641694 fb-gh-sync-id: e35df5408730ce9ec267cbeeb556f8eba154df1f --- React/Modules/RCTAsyncLocalStorage.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/React/Modules/RCTAsyncLocalStorage.m b/React/Modules/RCTAsyncLocalStorage.m index 344832b9a..46d062224 100644 --- a/React/Modules/RCTAsyncLocalStorage.m +++ b/React/Modules/RCTAsyncLocalStorage.m @@ -20,7 +20,7 @@ static NSString *const RCTStorageDirectory = @"RCTAsyncLocalStorage_V1"; static NSString *const RCTManifestFileName = @"manifest.json"; -static const NSUInteger RCTInlineValueThreshold = 100; +static const NSUInteger RCTInlineValueThreshold = 1024; #pragma mark - Static helper functions