diff --git a/CHANGELOG.md b/CHANGELOG.md index 10db23829..7d29ca030 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ Group changes to describe their impact on the project, as follows: ## [Unreleased] -## [3.16] - 2017-09-01 +## [3.16.1] - 2017-09-01 ### Added - Support of CallKit diff --git a/Classes/LinphoneManager.m b/Classes/LinphoneManager.m index d60560963..4ede19f59 100644 --- a/Classes/LinphoneManager.m +++ b/Classes/LinphoneManager.m @@ -1355,7 +1355,9 @@ static void linphone_iphone_call_encryption_changed(LinphoneCore *lc, LinphoneCa NSMutableDictionary *dict = [NSMutableDictionary dictionary]; [dict setObject:[NSValue valueWithPointer:call] forKey:@"call"]; [dict setObject:[NSNumber numberWithBool:on] forKey:@"on"]; - [dict setObject:[NSString stringWithUTF8String:authentication_token] forKey:@"token"]; + if (authentication_token) { + [dict setObject:[NSString stringWithUTF8String:authentication_token] forKey:@"token"]; + } [NSNotificationCenter.defaultCenter postNotificationName:kLinphoneCallEncryptionChanged object:self userInfo:dict]; } diff --git a/linphone-Info.plist b/linphone-Info.plist index fa833f85b..03244188e 100644 --- a/linphone-Info.plist +++ b/linphone-Info.plist @@ -24,7 +24,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 3.16 + 3.16.1 CFBundleURLTypes @@ -53,7 +53,7 @@ CFBundleVersion - 8 + 1 ITSAppUsesNonExemptEncryption ITSEncryptionExportComplianceCode