1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-10-19 01:27:40 +00:00
This commit is contained in:
Ozzieisaacs
2019-08-06 18:38:17 +02:00
parent 3eae2e9c2c
commit 4be55285d8
5 changed files with 105 additions and 75 deletions

View File

@@ -785,4 +785,4 @@ def get_download_link(book_id, book_format):
############### Database Helper functions
def lcase(s):
return unidecode.unidecode(s.lower())
return unidecode.unidecode(s.lower()) if use_unidecode else s.lower()