Skip to content

Commit

Permalink
sepinf-inc#2286: fix commit 9971557
Browse files Browse the repository at this point in the history
  • Loading branch information
aberenguel committed Aug 9, 2024
1 parent e9a178b commit e36d456
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ private void generateChat(Chat c, Contact account, Extractor e, IItemSearcher se
private void addParticipantFields(Metadata chatMetadata, Chat c, Extractor e, String field, long id) {

// avoid the own chat as participant (happens in Channels)
if (c.getId() == id)
if (c.getId() == id && c.isGroupOrChannel())
return;

Contact contact = e.getContact(id);
Expand Down

0 comments on commit e36d456

Please sign in to comment.