Skip to content

Commit

Permalink
MQTT-Client-Framework 0.6.8/9
Browse files Browse the repository at this point in the history
> Release date 2016-02-11

[FIX] Client-side certificate validations issues closes #96
  • Loading branch information
Christoph Krey committed Feb 11, 2016
1 parent 8d24458 commit 6233daf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
MQTT-Client-Framework iOS/OSX/tvOS Release Notes
================================================

## MQTT-Client-Framework 0.6.8
## MQTT-Client-Framework 0.6.8/9
> Release date 2016-02-11
[FIX] Client-side certificate validations issues closes #96
Expand Down
4 changes: 2 additions & 2 deletions MQTTClient.podspec
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Pod::Spec.new do |mqttc|
mqttc.name = "MQTTClient"
mqttc.version = "0.6.8"
mqttc.version = "0.6.9"
mqttc.summary = "iOS, OSX and tvOS native ObjectiveC MQTT Client Framework"
mqttc.homepage = "https://github.com/ckrey/MQTT-Client-Framework"
mqttc.license = { :type => "EPLv1", :file => "LICENSE" }
mqttc.author = { "Christoph Krey" => "[email protected]" }
mqttc.source = {
:git => "https://github.com/ckrey/MQTT-Client-Framework.git",
:tag => "0.6.8",
:tag => "0.6.9",
:submodules => true
}

Expand Down
9 changes: 0 additions & 9 deletions MQTTClient/MQTTClient/MQTTSession.m
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,6 @@ - (void)setCertificates:(NSArray *)newCertificates {
}
}

- (NSArray *)certificates {
if (self.transport) {
if ([self.transport respondsToSelector:@selector(certificates)]) {
self.certificates = [self.transport performSelector:@selector(certificates) withObject:nil];
}
}
return self.certificates;
}

- (instancetype)init {
DDLogVerbose(@"[MQTTSession] init");
self = [super init];
Expand Down

0 comments on commit 6233daf

Please sign in to comment.