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

Commit

Permalink
Merge branch 'release/0.9.32'
Browse files Browse the repository at this point in the history
  • Loading branch information
BillCarsonFr committed Nov 25, 2019
2 parents 3960ced + fd581a6 commit 43a9817
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Changes to Matrix Android SDK in 0.9.32 (2019-11-25)
=======================================================

Bugfix:
- Fix / Integration Manager was not allowed by default


Changes to Matrix Android SDK in 0.9.31 (2019-11-22)
=======================================================

Expand Down
4 changes: 2 additions & 2 deletions matrix-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ android {
defaultConfig {
minSdkVersion 16
targetSdkVersion 28
versionCode 931
versionName "0.9.31"
versionCode 932
versionName "0.9.32"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

// Enable multi dex for test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ class IntegrationManager(val mxSession: MXSession, val context: Context) {
return mxSession.dataHandler
.store
?.getAccountDataElement(AccountDataElement.ACCOUNT_DATA_TYPE_INTEGRATION_PROVISIONING)
?.content?.get("enabled") == true
?.content?.get("enabled") as? Boolean ?: true
}

init {
Expand Down

0 comments on commit 43a9817

Please sign in to comment.