fix description
This commit is contained in:
parent
fd92f93fbd
commit
0767cf3d44
1 changed files with 3 additions and 2 deletions
|
@ -300,8 +300,9 @@ public class WikiArticleHelper {
|
||||||
if (firstParagraphStart != -1 && firstParagraphEnd != -1
|
if (firstParagraphStart != -1 && firstParagraphEnd != -1
|
||||||
&& firstParagraphEnd >= firstParagraphStart) {
|
&& firstParagraphEnd >= firstParagraphStart) {
|
||||||
firstParagraphHtml = content.substring(firstParagraphStart, firstParagraphEnd + P_CLOSED.length());
|
firstParagraphHtml = content.substring(firstParagraphStart, firstParagraphEnd + P_CLOSED.length());
|
||||||
while (firstParagraphHtml.substring(P_OPENED.length(), firstParagraphHtml.length() - P_CLOSED.length()).trim().isEmpty()
|
while ((firstParagraphHtml.substring(P_OPENED.length(), firstParagraphHtml.length() - P_CLOSED.length()).trim().isEmpty()
|
||||||
&& (firstParagraphEnd + P_CLOSED.length()) < content.length()) {
|
&& (firstParagraphEnd + P_CLOSED.length()) < content.length())
|
||||||
|
|| Html.fromHtml(firstParagraphHtml.replaceAll("(<a.+?/a>)|(<div.+?/div>)", "")).toString().trim().length() == 0) {
|
||||||
firstParagraphStart = content.indexOf(P_OPENED, firstParagraphEnd);
|
firstParagraphStart = content.indexOf(P_OPENED, firstParagraphEnd);
|
||||||
firstParagraphEnd = firstParagraphStart == -1 ? -1 : content.indexOf(P_CLOSED, firstParagraphStart);
|
firstParagraphEnd = firstParagraphStart == -1 ? -1 : content.indexOf(P_CLOSED, firstParagraphStart);
|
||||||
if (firstParagraphStart != -1 && firstParagraphEnd != -1) {
|
if (firstParagraphStart != -1 && firstParagraphEnd != -1) {
|
||||||
|
|
Loading…
Reference in a new issue