Merge pull request #102 from Mikunj/friend-request-retry

Fixes #86
pull/104/head
sachaaaaa 6 years ago committed by GitHub
commit 37abdc6a4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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