[android] ensure that conversation request buttons always work

This commit is contained in:
Torsten Grote
2019-04-05 09:38:08 -03:00
parent 652ce4a53d
commit 79ff5aa148

View File

@@ -53,6 +53,10 @@ class ConversationRequestViewHolder extends ConversationNoticeViewHolder {
listener.respondToRequest(request, false);
});
}
// enable buttons, because the disabled buttons from the click listener
// might get recycled and thus not work
acceptButton.setEnabled(true);
declineButton.setEnabled(true);
}
}