diff --git a/extentions.lua b/extentions.lua index 7994a5f6a..073d64324 100644 --- a/extentions.lua +++ b/extentions.lua @@ -3,7 +3,7 @@ ext = { djvuRead = ";djvu;", pdfRead = ";pdf;xps;cbz;", - creRead = ";epub;txt;rtf;htm;html;mobi;prc;azw;fb2;chm;pdb;doc;tcr;zip;" + --creRead = ";epub;txt;rtf;htm;html;mobi;prc;azw;fb2;chm;pdb;doc;tcr;zip;" -- seems to accept pdb-files for PalmDoc only } @@ -15,10 +15,8 @@ function ext:getReader(ftype) return DJVUReader elseif string.find(self.pdfRead,s..ftype..s) then return PDFReader - elseif string.find(self.creRead,s..ftype..s) then - return CREReader else - return nil + return CREReader end end