do not show id for sponsored messages

This commit is contained in:
immat0x1
2022-06-15 12:13:30 +05:00
parent 154fdd0eaa
commit de254bdc07

View File

@@ -10286,7 +10286,7 @@ public class ChatMessageCell extends BaseCell implements SeekBar.SeekBarDelegate
} else {
timeString = LocaleController.getInstance().formatterDay.format((long) (messageObject.messageOwner.date) * 1000);
}
if (ExteraConfig.showMessageID && messageObject.messageOwner != null && (isChat || isMegagroup || ChatObject.isChannel(currentChat))) {
if (ExteraConfig.showMessageID && messageObject.messageOwner != null && (isChat || isMegagroup || ChatObject.isChannel(currentChat)) && !messageObject.isSponsored()) {
timeString = timeString + " | " + messageObject.messageOwner.id;
}
if (signString != null) {