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

master
Alan Evans 2020-09-30 15:39:29 -03:00
parent cd995aca56
commit 100359e38d
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}
}