Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
LiuYi0526 committed Jan 24, 2025
2 parents a584fd8 + 48b6a07 commit b0a694d
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10371,7 +10371,6 @@ public void run(int param) {
}
filterPopup.show();
});
searchFilterButton.setContentDescription(LocaleController.getString(R.string.JumpToDate));
}
}

Expand Down Expand Up @@ -34103,6 +34102,9 @@ public void openHashtagSearch(String hashtag, boolean forcePublic) {
if (searchUserButton != null) {
searchUserButton.setVisibility(View.GONE);
}
if (searchFilterButton != null) {
searchFilterButton.setVisibility(View.GONE);
}
if (channelHashtags || forcePublic || ChatObject.isChannelAndNotMegaGroup(currentChat) && ChatObject.isPublic(currentChat) && searchingHashtag != null) {
defaultSearchPage = 2;

Expand Down Expand Up @@ -34202,6 +34204,9 @@ private void openSearchWithUser(TLRPC.User user) {
if (searchUserButton != null) {
searchUserButton.setVisibility(View.GONE);
}
if (searchFilterButton != null) {
searchFilterButton.setVisibility(View.GONE);
}
}
if (searchItem != null) {
preventReopenSearchWithText = true;
Expand Down

0 comments on commit b0a694d

Please sign in to comment.