fix to avoid zombies to be cleared when new group update received

This commit is contained in:
Brice-W
2021-06-04 12:20:21 +10:00
parent 6fb461f7d8
commit 1d0b61cf89
2 changed files with 3 additions and 2 deletions

View File

@@ -294,7 +294,6 @@ public class GroupDatabase extends Database implements LokiOpenGroupDatabaseProt
ContentValues contents = new ContentValues();
contents.put(ZOMBIE_MEMBERS, Address.toSerializedList(members, ','));
contents.put(ACTIVE, 1);
databaseHelper.getWritableDatabase().update(TABLE_NAME, contents, GROUP_ID + " = ?",
new String[] {groupId});
}