Skip to content

Commit

Permalink
fix: reply-to user or channel name again
Browse files Browse the repository at this point in the history
Signed-off-by: Next Alone <12210746+NextAlone@users.noreply.github.com>
  • Loading branch information
NextAlone committed Apr 13, 2024
1 parent c455a20 commit f29708c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
7 changes: 4 additions & 3 deletions TMessagesProj/src/main/java/org/telegram/ui/ChatActivity.java
Expand Up @@ -8479,7 +8479,7 @@ private void showBotMessageHint(ChatMessageCell cell, boolean byClick) {
botMessageHint.show();
});
}

private void hideHints() {
if (savedMessagesTagHint != null && savedMessagesTagHint.shown()) {
savedMessagesTagHint.hide();
Expand Down Expand Up @@ -13885,8 +13885,9 @@ public void showFieldPanel(boolean show, MessageObject messageObjectToReply, Mes
}
nameText = AndroidUtilities.replaceCharSequence("%s", LocaleController.getString(R.string.ReplyTo), name == null ? "" : name);
}
nameText = MessageHelper.INSTANCE.zalgoFilter(nameText);
nameText = Emoji.replaceEmoji(nameText, replyNameTextView.getPaint().getFontMetricsInt(), false);
replyNameTextView.setText(MessageHelper.INSTANCE.zalgoFilter(name));
replyNameTextView.setText(nameText);
replyIconImageView.setContentDescription(LocaleController.getString("AccDescrReplying", R.string.AccDescrReplying));
replyCloseImageView.setContentDescription(LocaleController.getString("AccDescrCancelReply", R.string.AccDescrCancelReply));

Expand Down Expand Up @@ -39631,7 +39632,7 @@ public void updateClip(int[] clip) {
clip[1] = chatListView.getMeasuredHeight() - (chatListView.getPaddingBottom() - AndroidUtilities.dp(3));
}
}

private void updateVisibleWallpaperActions() {
if (chatListView != null && chatAdapter != null) {
for (int i = 0; i < chatListView.getChildCount(); ++i) {
Expand Down
Expand Up @@ -137,20 +137,14 @@ object MessageHelper {
}

fun zalgoFilter(
text: CharSequence?
text: String
): String {
return if (text == null) {
""
} else {
zalgoFilter(
text.toString()
)
}
return zalgoFilter(text as CharSequence).toString()
}

fun zalgoFilter(
text: String?
): String {
text: CharSequence?
): CharSequence {
return if (text == null) {
""
} else if (NaConfig.zalgoFilter.Bool() && text.matches(
Expand Down

0 comments on commit f29708c

Please sign in to comment.