Skip to content

Commit 16568e4

Browse files
committed
Handle the edge case where TableCellSpansOnPage *has* been calculated
But it's just empty because there are no tables on the page.
1 parent 2bc216f commit 16568e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

IndicoToolkit/EtlOutputs/EtlOutput.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Lazily compute & memoize table cells sorted by span on each page.
2121
{
2222
get
2323
{
24-
if (_TableCellSpansOnPage.IsDefaultOrEmpty)
24+
if (_TableCellSpansOnPage.IsDefault)
2525
{
2626
_TableCellSpansOnPage = TablesOnPage
2727
.Select(page => page

0 commit comments

Comments
 (0)