Fix friend request retry not working.

pull/102/head
Mikunj 6 years ago
parent b5589d4969
commit f98fe910d5

@ -334,7 +334,8 @@
const conversation = this.getConversation();
const onAccept = () => this.acceptFriendRequest();
const onDecline = () => this.declineFriendRequest()
const onDecline = () => this.declineFriendRequest();
const onRetrySend = () => this.retrySend();
const onDeleteConversation = async () => {
// Delete the whole conversation
@ -362,6 +363,7 @@
onDeleteConversation,
onBlockUser,
onUnblockUser,
onRetrySend,
}
},
findContact(phoneNumber) {
@ -795,6 +797,7 @@
const conversation = this.getConversation();
const options = conversation.getSendOptions();
options.messageType = this.get('type');
let promise;

@ -73,7 +73,7 @@
return {
Component: Components.FriendRequest,
props: this.model.getPropsForFriendRequest(),
};
};
}
return {

Loading…
Cancel
Save