Skip to content

Commit

Permalink
Releases 1.1.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
OliverLetterer committed May 13, 2015
1 parent 05da5e1 commit f2ec3aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SPLPing.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

Pod::Spec.new do |s|
s.name = "SPLPing"
s.version = "1.1.2"
s.version = "1.1.3"
s.summary = "Lightweight, reusable and race free ping implementation."
s.homepage = "https://github.com/OliverLetterer/SPLPing"
s.license = 'MIT'
Expand Down
2 changes: 1 addition & 1 deletion SPLPing/SPLPing.m
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,8 @@ - (void)_scheduleNextPing
__weak typeof(self) weakSelf = self;
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(self.configuration.pingInterval * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
__strong typeof(self) self = weakSelf;
[self _sendPing];
self.hasScheduledNextPing = NO;
[self _sendPing];
});
}

Expand Down

0 comments on commit f2ec3aa

Please sign in to comment.