Skip to content

Commit

Permalink
2.8.5 Release
Browse files Browse the repository at this point in the history
• Resolves a rare concurrency issue with the SDK's HTTP client
  • Loading branch information
Nightsd01 committed May 18, 2018
1 parent 118e400 commit 5f65589
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion OneSignal.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "OneSignal"
s.version = "2.8.4"
s.version = "2.8.5"
s.summary = "OneSignal push notification library for mobile apps."
s.homepage = "https://onesignal.com"
s.license = { :type => 'MIT', :file => 'LICENSE' }
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion iOS_SDK/OneSignalSDK/Source/OneSignal.m
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ @implementation OSPendingCallbacks

@implementation OneSignal

NSString* const ONESIGNAL_VERSION = @"020804";
NSString* const ONESIGNAL_VERSION = @"020805";
static NSString* mSDKType = @"native";
static BOOL coldStartFromTapOnNotification = NO;

Expand Down
2 changes: 1 addition & 1 deletion iOS_SDK/OneSignalSDK/Source/OneSignalClient.m
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ - (void)executeSimultaneousRequests:(NSDictionary<NSString *, OneSignalRequest *
}];
}

dispatch_group_wait(group, DISPATCH_TIME_FOREVER);
dispatch_group_wait(group, dispatch_time(DISPATCH_TIME_NOW, REQUEST_TIMEOUT_REQUEST * NSEC_PER_SEC));

//requests should all be completed at this point
dispatch_async(dispatch_get_main_queue(), ^{
Expand Down

0 comments on commit 5f65589

Please sign in to comment.