Fix navigation to replied message

This commit is contained in:
Alfonso Grillo
2023-01-02 19:49:52 +01:00
parent 2f76be2594
commit 844c358af4
@@ -1992,11 +1992,6 @@ static NSString *const kHTMLATagRegexPattern = @"<a href=(?:'|\")(.*?)(?:'|\")>(
html = [html stringByReplacingCharactersInRange:inReplyToTextRange withString:[VectorL10n noticeInReplyTo]];
}
if (inReplyToLinkRange.location != NSNotFound)
{
html = [html stringByReplacingCharactersInRange:inReplyToLinkRange withString:@"#"];
}
return html;
}