From 58c28ff674ddd80a4a3a95f2e81484ddfb869856 Mon Sep 17 00:00:00 2001 From: nielsandriesse Date: Wed, 29 Apr 2020 16:04:09 +1000 Subject: [PATCH] Revert "Fix message status bar updating issue" This reverts commit 739cb1b6ab4315b9028f030a00506609b69ebe9f. --- .../ConversationView/ConversationViewController.m | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Signal/src/ViewControllers/ConversationView/ConversationViewController.m b/Signal/src/ViewControllers/ConversationView/ConversationViewController.m index 775fe9db0..2cd43c5b5 100644 --- a/Signal/src/ViewControllers/ConversationView/ConversationViewController.m +++ b/Signal/src/ViewControllers/ConversationView/ConversationViewController.m @@ -5413,8 +5413,7 @@ typedef enum : NSUInteger { targetInteraction = interaction; } }]; - if (targetInteraction == nil || targetInteraction.interactionType != OWSInteractionType_OutgoingMessage - || [LKSessionProtocol isMessageNoteToSelf:self.thread]) { return; } + if (targetInteraction == nil || targetInteraction.interactionType != OWSInteractionType_OutgoingMessage) { return; } dispatch_async(dispatch_get_main_queue(), ^{ if (progress <= self.progressIndicatorView.progress) { return; } self.progressIndicatorView.alpha = 1;