beginning support for hours - for audiobook tracking

This commit is contained in:
2026-08-06 18:37:30 -06:00
parent 8dce67b2c4
commit e1fa8e1916
4 changed files with 27 additions and 2 deletions
+7
View File
@@ -31,6 +31,13 @@ local filters = {
end
return true
end,
audiobooks_only = function(book)
if book.hidden then return false end
if book.hours then
return true
end
return false
end,
}
return filters