do not ignoreBlocked in Recent Actions

This commit is contained in:
luvletter2333 2021-05-05 19:22:33 +08:00
parent 85aba5f968
commit 793fd0d51f
No known key found for this signature in database
GPG Key ID: BFD68B892BECC1D8
1 changed files with 1 additions and 1 deletions

View File

@ -789,7 +789,7 @@ public class ChatMessageCell extends BaseCell implements SeekBar.SeekBarDelegate
private boolean needHideMessage() {
return currentMessageObject.messageOwner.hide ||
MessagesController.getInstance(currentAccount).blockePeers.indexOfKey(currentMessageObject.getFromChatId()) >= 0 &&
NekoConfig.ignoreBlocked;
NekoConfig.ignoreBlocked && !(getParent().getClass().getName().contains("ChannelAdminLogActivity"));
}
public ChatMessageCell(Context context) {