mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-22 13:05:31 +03:00
Close database after fetching it
Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
parent
41cd5a3fd6
commit
a79a872e69
2 changed files with 2 additions and 1 deletions
|
@ -92,7 +92,7 @@ dependencies {
|
|||
|
||||
implementation 'io.requery:requery:1.4.1'
|
||||
implementation 'io.requery:requery-android:1.4.1'
|
||||
implementation 'net.zetetic:android-database-sqlcipher:3.5.7'
|
||||
implementation 'net.zetetic:android-database-sqlcipher:3.5.9'
|
||||
annotationProcessor 'io.requery:requery-processor:1.4.1'
|
||||
|
||||
compile 'org.parceler:parceler-api:1.1.9'
|
||||
|
|
|
@ -105,6 +105,7 @@ public final class MainActivity extends AppCompatActivity implements ActionBarPr
|
|||
}
|
||||
|
||||
if (!router.hasRootController() && hasDb && userUtils.anyUserExists()) {
|
||||
sqlCipherDatabaseSource.close();
|
||||
router.setRoot(RouterTransaction.with(new MagicBottomNavigationController())
|
||||
.pushChangeHandler(new HorizontalChangeHandler())
|
||||
.popChangeHandler(new HorizontalChangeHandler()));
|
||||
|
|
Loading…
Reference in a new issue