mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
fix(ReaderFooter:getDataFromStatistics): return na if book has no stats history
This commit is contained in:
parent
38ef2d6154
commit
ffd438de18
@ -242,11 +242,13 @@ end
|
||||
|
||||
function ReaderFooter:getDataFromStatistics(title, pages)
|
||||
local statistics_data = self.ui.doc_settings:readSetting("stats")
|
||||
local sec = 'na'
|
||||
if statistics_data and statistics_data.performance_in_pages then
|
||||
local read_pages = util.tablelength(statistics_data.performance_in_pages)
|
||||
local average_time_per_page = statistics_data.total_time_in_sec / read_pages
|
||||
return title .. util.secondsToClock(pages * average_time_per_page, true)
|
||||
sec = util.secondsToClock(pages * average_time_per_page, true)
|
||||
end
|
||||
return title .. sec
|
||||
end
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user