fix: read stats crashes pdf/djvu documents

This commit is contained in:
Qingping Hou
2015-12-25 20:54:13 -08:00
parent 90d1101ab7
commit 55234ef899
3 changed files with 37 additions and 2 deletions

View File

@@ -230,7 +230,12 @@ function ReaderFooter:getProgressPercentage()
end
function ReaderFooter:getBookTimeToRead()
local current_page = self.view.document:getCurrentPage()
local current_page
if self.view.document.info.has_pages then
current_page = self.ui.paging.current_page
else
current_page = self.view.document:getCurrentPage()
end
return self:getDataFromStatistics("TB: ", self.pages - current_page)
end