bump to 1.7.2 (#1926)

* do not consider expire timer update unread messages #1881

* cleanup conversation props in redux to only have what cannot be derived

* fix app not starting without the await on convo creation

* cleanup props of message model

* bump to 1.7.2
pull/1931/head
Audric Ackermann 4 years ago committed by GitHub
parent e3c27f1016
commit efebd8ba24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -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'}
/>
<MessageItem
convoId={conversationId}
isTyping={!!isTyping}
unreadCount={unreadCount || 0}
lastMessage={lastMessage}

@ -526,15 +526,13 @@ export class MessageModel extends Backbone.Model<MessageAttributes> {
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');
}

Loading…
Cancel
Save