Fix crash when inserting group member remaps.
This commit is contained in:
parent
428ef554a3
commit
0f18fa329d
1 changed files with 1 additions and 1 deletions
|
@ -1093,7 +1093,7 @@ class GroupTable(context: Context?, databaseHelper: SignalDatabase?) : DatabaseT
|
|||
.update(MembershipTable.TABLE_NAME)
|
||||
.values(RECIPIENT_ID to toId.serialize())
|
||||
.where("${MembershipTable.RECIPIENT_ID} = ?", fromId)
|
||||
.run()
|
||||
.run(conflictStrategy = SQLiteDatabase.CONFLICT_IGNORE)
|
||||
|
||||
for (group in getGroupsContainingMember(fromId, false, true)) {
|
||||
if (group.isV2Group) {
|
||||
|
|
Loading…
Add table
Reference in a new issue