diff --git a/background.html b/background.html index baf203d88..c96479b8f 100644 --- a/background.html +++ b/background.html @@ -138,7 +138,7 @@ - + diff --git a/ts/components/session/conversation/SessionConversation.tsx b/ts/components/session/conversation/SessionConversation.tsx index 83aa1d265..66d6551d3 100644 --- a/ts/components/session/conversation/SessionConversation.tsx +++ b/ts/components/session/conversation/SessionConversation.tsx @@ -520,13 +520,13 @@ export class SessionConversation extends React.Component { this.setState({ ...this.state, modal: null }) } - const onUpdateGroupNameSubmit = (newGroupName: string, newAvatar: string) => { - if (newGroupName !== groupName || newAvatar !== avatarPath) { + const onUpdateGroupNameSubmit = (newGroupName: string, newAvatarPath: string) => { + if (newGroupName !== groupName || newAvatarPath !== avatarPath) { ClosedGroup.initiateGroupUpdate( groupId, - groupName, + newGroupName, members, - avatarPath + newAvatarPath ) } }