Fix crash on Swipe to follow links with DJVU documents

pull/2861/head
poire-z 7 years ago committed by Qingping Hou
parent 773e24fc79
commit 3b813c761f

@ -225,7 +225,7 @@ function ReaderLink:onGoToFirstLink(ges)
return return
end end
local links = self.ui.document:getPageLinks(pos.page) local links = self.ui.document:getPageLinks(pos.page)
if #links == 0 then if not links or #links == 0 then
return return
end end
-- DEBUG("PDF Page links : ", links) -- DEBUG("PDF Page links : ", links)
@ -254,7 +254,7 @@ function ReaderLink:onGoToFirstLink(ges)
end end
else else
local links = self.ui.document:getPageLinks() local links = self.ui.document:getPageLinks()
if #links == 0 then if not links or #links == 0 then
return return
end end
-- DEBUG("CRE Page links : ", links) -- DEBUG("CRE Page links : ", links)

Loading…
Cancel
Save