mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
fix(ReaderFooter:getDataFromStatistics): return na if book has no stats history
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user