Merge branch 'develop' of https://github.com/tuskyapp/Tusky into develop

This commit is contained in:
Alibek Omarov 2020-02-06 18:55:36 +03:00
commit 43b5e8f1eb
1 changed files with 1 additions and 1 deletions

View File

@ -581,7 +581,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);
}
});