Improvement for #1062

This commit is contained in:
Ozzieisaacs 2019-10-20 16:47:15 +02:00
parent c740fe9124
commit 2145be6db2

View File

@ -183,7 +183,7 @@ def check_read_formats(entry):
bookformats = list()
if len(entry.data):
for ele in iter(entry.data):
if ele.format in EXTENSIONS_READER:
if ele.format.upper() in EXTENSIONS_READER:
bookformats.append(ele.format.lower())
return bookformats