From f2ec3aaf25a4748e059e66aa48f8f17d8dcf4075 Mon Sep 17 00:00:00 2001 From: Oliver Letterer Date: Wed, 13 May 2015 17:54:10 +0200 Subject: [PATCH] Releases 1.1.3. --- SPLPing.podspec | 2 +- SPLPing/SPLPing.m | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SPLPing.podspec b/SPLPing.podspec index 7dd424c..c94f607 100644 --- a/SPLPing.podspec +++ b/SPLPing.podspec @@ -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' diff --git a/SPLPing/SPLPing.m b/SPLPing/SPLPing.m index 419154a..3e9bf21 100644 --- a/SPLPing/SPLPing.m +++ b/SPLPing/SPLPing.m @@ -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]; }); }