Fix bug when an extra column starts in the middle of the table

This commit is contained in:
Antonin Delpeuch 2017-09-19 13:53:01 +01:00
parent 94857660a8
commit 49564e8905

View File

@ -504,7 +504,7 @@ public class WikitextImporter extends TabularImportingParserBase {
List<Recon> recons = new ArrayList<Recon>(rowSize);
for (int j = 0; j < rowSize; j++) {
recons.add(null);
if (i == 0)
if (j >= columnReconciled.size())
columnReconciled.add(false);
}
reconList.add(recons);