Skip to content

Commit 8c9a603

Browse files
authored
Merge pull request #445 from BranchMetrics/patch-delay
patch delay
2 parents bc184ff + 47f5c6f commit 8c9a603

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Branch-SDK/Branch-SDK/Requests/BranchInstallRequest.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ - (void)makeRequest:(BNCServerInterface *)serverInterface key:(NSString *)key ca
3636
params[BRANCH_REQUEST_KEY_DEBUG] = @(preferenceHelper.isDebug);
3737

3838
if ([[BNCStrongMatchHelper strongMatchHelper] shouldDelayInstallRequest]) {
39-
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(500 * NSEC_PER_MSEC)), dispatch_get_main_queue(), ^{
39+
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(750 * NSEC_PER_MSEC)), dispatch_get_main_queue(), ^{
4040
[serverInterface postRequest:params url:[preferenceHelper getAPIURL:BRANCH_REQUEST_ENDPOINT_INSTALL] key:key callback:callback];
4141
});
4242
}

0 commit comments

Comments
 (0)