We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bc72ea commit ea3ba52Copy full SHA for ea3ba52
1 file changed
TMessagesProj/src/main/java/org/telegram/ui/ProfileActivity.java
@@ -10887,6 +10887,16 @@ private void updateRowsIds() {
10887
}
10888
musicView.setVisibility(hasMusic ? View.VISIBLE : View.GONE);
10889
10890
+ if (listView != null && infoStartRow >= 0 && infoEndRow >= infoStartRow) {
10891
+ if (listView.forcedSections == null) {
10892
+ listView.forcedSections = new ArrayList<>();
10893
+ } else {
10894
+ listView.forcedSections.clear();
10895
+ }
10896
+ listView.forcedSections.add(AndroidUtilities.pack(infoStartRow, infoEndRow));
10897
+ } else if (listView != null && listView.forcedSections != null) {
10898
10899
10900
10901
10902
private Drawable getScamDrawable(int type) {
0 commit comments