mirror of
https://github.com/oxen-io/session-android.git
synced 2025-06-09 12:48:35 +00:00
Don't show empty date popovers.
This commit is contained in:
parent
264d353ec2
commit
f8e63098a2
@ -1375,6 +1375,10 @@ public class ConversationFragment extends Fragment
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void show() {
|
public void show() {
|
||||||
|
if (textView.getText() == null || textView.getText().length() == 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (pendingHide) {
|
if (pendingHide) {
|
||||||
pendingHide = false;
|
pendingHide = false;
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user