mirror of
https://github.com/janeczku/calibre-web
synced 2025-04-05 10:17:00 +00:00
Better error output for "empty" Author sort not working
Update bleach requirement
This commit is contained in:
parent
a215b73e39
commit
854a7d020d
@ -901,7 +901,8 @@ class CalibreDB:
|
||||
results = self.session.query(Authors).filter(Authors.sort == auth).all()
|
||||
# ToDo: How to handle not found author name
|
||||
if not len(results):
|
||||
log.error("Author {} not found to display name in right order".format(auth))
|
||||
book_id = entry.id if isinstance(entry, Books) else entry[0].id
|
||||
log.error("Author '{}' of book {} not found to display name in right order".format(auth, book_id))
|
||||
# error = True
|
||||
break
|
||||
for r in results:
|
||||
|
@ -19,7 +19,7 @@ netifaces-plus>=0.12.0,<0.13.0
|
||||
urllib3>=1.22,<3.0
|
||||
Flask-Limiter>=2.3.0,<3.13.0
|
||||
regex>=2022.3.2,<2025.3.20
|
||||
bleach>=6.0.0,<6.2.0
|
||||
bleach>=6.0.0,<6.3.0
|
||||
python-magic>=0.4.27,<0.5.0
|
||||
python-magic-bin>=0.4.0,<0.5.0;sys_platform=='win32'
|
||||
flask-httpAuth>=4.4.0,<5.0.0
|
||||
|
Loading…
x
Reference in New Issue
Block a user