Fix poll.end read receipts

This commit is contained in:
Alfonso Grillo 2022-12-30 09:41:45 +01:00
parent dd1cd703af
commit 7a3fe14963

View file

@ -1606,6 +1606,16 @@ static NSString *const kHTMLATagRegexPattern = @"<a href=(?:'|\")(.*?)(?:'|\")>(
}
break;
}
case MXEventTypePollEnd:
{
if (event.isEditEvent)
{
return nil;
}
displayText = [VectorL10n pollTimelineEndedText];
break;
}
case MXEventTypePollStart:
{
if (event.isEditEvent)