Allow in notification reply to multi message if you can reply to latest.

fork-5.53.8
Alan Evans 2020-09-30 15:39:29 -03:00
rodzic cd995aca56
commit 100359e38d
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -209,7 +209,7 @@ public class NotificationState {
}
public boolean canReply() {
return notifications.size() == 1 && notifications.get(0).canReply();
return notifications.size() >= 1 && notifications.get(0).canReply();
}
}