Skip to content

Commit

Permalink
Don't show empty date popovers.
Browse files Browse the repository at this point in the history
  • Loading branch information
greyson-signal committed Mar 27, 2020
1 parent 264d353 commit f8e6309
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1375,6 +1375,10 @@ private ConversationDateHeader(Context context, TextView textView) {
}

public void show() {
if (textView.getText() == null || textView.getText().length() == 0) {
return;
}

if (pendingHide) {
pendingHide = false;
} else {
Expand Down

0 comments on commit f8e6309

Please sign in to comment.