mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-03 19:34:15 +01:00
Fixed linkify of pre formatted text
This commit is contained in:
@@ -340,7 +340,7 @@ public class HtmlHelper {
|
||||
public void head(Node node, int depth) {
|
||||
if (links < MAX_AUTO_LINK && node instanceof TextNode) {
|
||||
TextNode tnode = (TextNode) node;
|
||||
String text = tnode.text();
|
||||
String text = tnode.getWholeText();
|
||||
|
||||
Matcher matcher = pattern.matcher(text);
|
||||
if (matcher.find()) {
|
||||
|
||||
Reference in New Issue
Block a user