Skip to content

Commit

Permalink
#1843 try to recover deleted messages in deleted chats;
Browse files Browse the repository at this point in the history
  • Loading branch information
hauck-jvsh committed Sep 5, 2023
1 parent db40a2d commit 54251e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ protected List<Chat> extractChatList() throws WAExtractorException {
c.setGroupChat(contactId.endsWith("g.us")); //$NON-NLS-1$
c.setDeleted(rs.getInt("ZREMOVED") != 0);
remote.setAvatarPath(rs.getString("avatarPath")); //$NON-NLS-1$
if (recoverDeletedRecords && !c.isDeleted()) {
if (recoverDeletedRecords) {
activeChats.add(c.getId());
}
list.add(c);
Expand Down

0 comments on commit 54251e3

Please sign in to comment.