2
0
mirror of https://github.com/koreader/koreader synced 2024-10-31 21:20:20 +00:00

Bugfix: count books like BOOK.PDF and BOOK.DJVU

In the function FileInfo:getFolderContent() we need to lowercase the
extension before deciding if it is a book or not --- otherwise files
like BOOK.PDF and BOOK.DJVU are not counted as books.
This commit is contained in:
Tigran Aivazian 2012-10-08 12:04:52 +01:00
parent 5ce6bf87ca
commit c115127e1c

View File

@ -74,7 +74,7 @@ function FileInfo:getFolderContent()
if j == "file" then if j == "file" then
files = files + 1 files = files + 1
ftype = string.match(name, ".+%.([^.]+)") ftype = string.match(name, ".+%.([^.]+)")
if ftype and ext:getReader(ftype) then if ftype and ext:getReader(string.lower(ftype)) then
books = books + 1 books = books + 1
end end
elseif j == "directory" then elseif j == "directory" then