fix content collapse button not working in notifications (#1665)

This commit is contained in:
Konrad Pozniak 2020-02-04 22:21:43 +01:00 committed by GitHub
parent 4a9951e245
commit c379014d9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -551,7 +551,7 @@ public class NotificationsAdapter extends RecyclerView.Adapter {
contentCollapseButton.setOnClickListener(view -> {
int position = getAdapterPosition();
if (position != RecyclerView.NO_POSITION && notificationActionListener != null) {
notificationActionListener.onNotificationContentCollapsedChange(statusViewData.isCollapsed(), position);
notificationActionListener.onNotificationContentCollapsedChange(!statusViewData.isCollapsed(), position);
}
});