Skip to content
This repository was archived by the owner on Apr 12, 2022. It is now read-only.

Commit 43a9817

Browse files
committed
Merge branch 'release/0.9.32'
2 parents 3960ced + fd581a6 commit 43a9817

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGES.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Changes to Matrix Android SDK in 0.9.32 (2019-11-25)
2+
=======================================================
3+
4+
Bugfix:
5+
- Fix / Integration Manager was not allowed by default
6+
7+
18
Changes to Matrix Android SDK in 0.9.31 (2019-11-22)
29
=======================================================
310

matrix-sdk/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ android {
2727
defaultConfig {
2828
minSdkVersion 16
2929
targetSdkVersion 28
30-
versionCode 931
31-
versionName "0.9.31"
30+
versionCode 932
31+
versionName "0.9.32"
3232
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
3333

3434
// Enable multi dex for test

matrix-sdk/src/main/java/org/matrix/androidsdk/features/integrationmanager/IntegrationManager.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ class IntegrationManager(val mxSession: MXSession, val context: Context) {
209209
return mxSession.dataHandler
210210
.store
211211
?.getAccountDataElement(AccountDataElement.ACCOUNT_DATA_TYPE_INTEGRATION_PROVISIONING)
212-
?.content?.get("enabled") == true
212+
?.content?.get("enabled") as? Boolean ?: true
213213
}
214214

215215
init {

0 commit comments

Comments
 (0)