commit b1168c7ffc081d05fe2b600d5dd22b40a3c926c6
parent b490620975005ccfc65bd92fbe23fe8dc3a1427d
Author: Paul <paul@claws-mail.org>
Date: Tue, 10 Nov 2015 14:29:13 +0000
workaround broken links in html
normally, with unbroken html, we'd never get here cos it would have
breaked before.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/html.c b/src/html.c
@@ -658,6 +658,7 @@ static SC_HTMLState sc_html_parse_tag(SC_HTMLParser *parser)
break;
}
}
+ parser->state = SC_HTML_HREF_BEG;
} else if (!strcmp(tag->name, "/a")) {
parser->state = SC_HTML_HREF;
} else if (!strcmp(tag->name, "p")) {