diff --git a/package.json b/package.json index 97fd86d7b..7eac174a1 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "session-desktop", "productName": "Session", "description": "Private messaging from your desktop", - "version": "1.7.1", + "version": "1.7.2", "license": "GPL-3.0", "author": { "name": "Loki Project", diff --git a/ts/components/ConversationListItem.tsx b/ts/components/ConversationListItem.tsx index f1de55bfc..cdb1921f3 100644 --- a/ts/components/ConversationListItem.tsx +++ b/ts/components/ConversationListItem.tsx @@ -181,7 +181,6 @@ const MessageItem = (props: { lastMessage?: LastMessageType; isTyping: boolean; unreadCount: number; - convoId: string; }) => { const { lastMessage, isTyping, unreadCount } = props; @@ -324,7 +323,6 @@ const ConversationListItem = (props: Props) => { currentNotificationSetting={currentNotificationSetting || 'all'} /> { if (body) { props.text = this.createNonBreakingLastSeparator(body); } - - if (this.get('messageHash')) { - props.messageHash = this.get('messageHash'); - } - if (this.get('isDeleted')) { props.isDeleted = this.get('isDeleted'); } + if (this.get('messageHash')) { + props.messageHash = this.get('messageHash'); + } if (this.get('received_at')) { props.receivedAt = this.get('received_at'); }