Fix read receipts

This commit is contained in:
Niels Andriesse 2020-11-26 14:12:55 +11:00
parent 1ddb8ac50e
commit ab56e12ff4
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ NSString *const OWSReadReceiptManagerAreReadReceiptsEnabled = @"areReadReceiptsE
{
NSString *messageAuthorId = message.authorId;
if (!message.thread.isGroupThread) { return; } // Don't send read receipts in group threads
if (message.thread.isGroupThread) { return; } // Don't send read receipts in group threads
if ([self areReadReceiptsEnabled]) {
[self.outgoingReceiptManager enqueueReadReceiptForEnvelope:messageAuthorId timestamp:message.timestamp];