diff --git a/iped-parsers/iped-parsers-impl/src/main/java/iped/parsers/telegram/TelegramParser.java b/iped-parsers/iped-parsers-impl/src/main/java/iped/parsers/telegram/TelegramParser.java index 1ac1f01fc1..47bdb395cd 100644 --- a/iped-parsers/iped-parsers-impl/src/main/java/iped/parsers/telegram/TelegramParser.java +++ b/iped-parsers/iped-parsers-impl/src/main/java/iped/parsers/telegram/TelegramParser.java @@ -215,6 +215,9 @@ private void generateChat(Chat c, Contact account, Extractor e, IItemSearcher se if (participantsCount > 0) { chatMetadata.add(ExtraProperties.PARTICIPANTS + "Count", String.valueOf(participantsCount)); } + } else { + addParticipantFields(chatMetadata, e, ExtraProperties.PARTICIPANTS, c.getId()); + addParticipantFields(chatMetadata, e, ExtraProperties.PARTICIPANTS, e.getUserAccount().getId()); } List msgSubset = c.getMessages().subList(firstMsg, nextMsg);