Merge pull request #3372 from vector-im/riot_3371

Disable Key Backup on Push Extension
This commit is contained in:
ismailgulek 2020-06-30 10:10:02 +03:00 committed by GitHub
commit 2281991675
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -42,6 +42,7 @@ Bug fix:
* CallVC: Declined calls now properly reset call view controller, thanks to @Legi429 (#2877).
* PreviewRoomTitleView: Fix inviter display name (#2520).
* Xcode11: Disable voip background mode to avoid VoIP pushes (#3369).
* Xcode11: Disable key backup on push extension (#3371).
Changes in 0.11.5 (2020-05-18)
===============================================

View file

@ -103,6 +103,7 @@ class NotificationService: UNNotificationServiceExtension {
let sdkOptions = MXSDKOptions.sharedInstance()
sdkOptions.disableIdenticonUseForUserAvatar = true
sdkOptions.enableCryptoWhenStartingMXSession = true
sdkOptions.enableKeyBackupWhenStartingMXCrypto = false
sdkOptions.backgroundModeHandler = MXUIKitBackgroundModeHandler()
Bundle.mxk_customizeLocalizedStringTableName("Vector")