do not show id for sponsored messages
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user