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", "name": "session-desktop",
"productName": "Session", "productName": "Session",
"description": "Private messaging from your desktop", "description": "Private messaging from your desktop",
"version": "1.7.1", "version": "1.7.2",
"license": "GPL-3.0", "license": "GPL-3.0",
"author": { "author": {
"name": "Loki Project", "name": "Loki Project",

@ -181,7 +181,6 @@ const MessageItem = (props: {
lastMessage?: LastMessageType; lastMessage?: LastMessageType;
isTyping: boolean; isTyping: boolean;
unreadCount: number; unreadCount: number;
convoId: string;
}) => { }) => {
const { lastMessage, isTyping, unreadCount } = props; const { lastMessage, isTyping, unreadCount } = props;
@ -324,7 +323,6 @@ const ConversationListItem = (props: Props) => {
currentNotificationSetting={currentNotificationSetting || 'all'} currentNotificationSetting={currentNotificationSetting || 'all'}
/> />
<MessageItem <MessageItem
convoId={conversationId}
isTyping={!!isTyping} isTyping={!!isTyping}
unreadCount={unreadCount || 0} unreadCount={unreadCount || 0}
lastMessage={lastMessage} lastMessage={lastMessage}

@ -526,15 +526,13 @@ export class MessageModel extends Backbone.Model<MessageAttributes> {
if (body) { if (body) {
props.text = this.createNonBreakingLastSeparator(body); props.text = this.createNonBreakingLastSeparator(body);
} }
if (this.get('messageHash')) {
props.messageHash = this.get('messageHash');
}
if (this.get('isDeleted')) { if (this.get('isDeleted')) {
props.isDeleted = this.get('isDeleted'); props.isDeleted = this.get('isDeleted');
} }
if (this.get('messageHash')) {
props.messageHash = this.get('messageHash');
}
if (this.get('received_at')) { if (this.get('received_at')) {
props.receivedAt = this.get('received_at'); props.receivedAt = this.get('received_at');
} }

Loading…
Cancel
Save