From c18a670d6b1974965fed868c808c98f73c8ea3fb Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Mon, 12 Jun 2017 13:28:29 -0400 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20update=20expiration=20for=20mes?= =?UTF-8?q?sages=20twice.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit // FREEBIE --- .../ViewControllers/ConversationView/MessagesViewController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Signal/src/ViewControllers/ConversationView/MessagesViewController.m b/Signal/src/ViewControllers/ConversationView/MessagesViewController.m index f42fdf9e8..9c09f4e97 100644 --- a/Signal/src/ViewControllers/ConversationView/MessagesViewController.m +++ b/Signal/src/ViewControllers/ConversationView/MessagesViewController.m @@ -3569,7 +3569,7 @@ typedef enum : NSUInteger { } DDLogError(@"Marking %zd messages as read.", interactions.count); for (id possiblyRead in interactions) { - [possiblyRead markAsReadWithTransaction:transaction sendReadReceipt:YES]; + [possiblyRead markAsReadWithTransaction:transaction sendReadReceipt:YES updateExpiration:YES]; } }]; }