ReaderBookmark: fix sort by date 2 (#12112)

reviewable/pr12106/r4^2
hius07 1 week ago committed by GitHub
parent 138e26a4fc
commit add783156d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -642,7 +642,7 @@ function ReaderBookmark:onShowBookmark()
end
end
local curr_page_datetime
if self.sorting_mode == "date" then
if self.sorting_mode == "date" and #item_table > 0 then
local idx = math.max(1, math.min(curr_page_index_filtered, #item_table))
curr_page_datetime = item_table[idx].datetime
local sort_func = self.is_reverse_sorting and function(a, b) return a.datetime > b.datetime end

Loading…
Cancel
Save