fix ConcurrentModificationException when sorting accounts

This commit is contained in:
Conny Duck 2019-02-16 14:49:17 +01:00
parent d371074d2a
commit 83dc45be35

View file

@ -160,7 +160,8 @@ class AccountManager(db: AppDatabase) {
* @return an immutable list of all accounts in the database with the active account first
*/
fun getAllAccountsOrderedByActive(): List<AccountEntity> {
accounts.sortWith(Comparator { l, r ->
val accountsCopy = accounts.toMutableList()
accountsCopy.sortWith(Comparator { l, r ->
when {
l.isActive && !r.isActive -> -1
r.isActive && !l.isActive -> 1
@ -168,7 +169,7 @@ class AccountManager(db: AppDatabase) {
}
})
return accounts.toList()
return accountsCopy
}
/**