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;