mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-06 00:03:46 +02:00
Fix #5399 (Title not shown correctly)
This commit is contained in:
parent
ab195723c8
commit
3fa5efd5d6
1 changed files with 1 additions and 1 deletions
|
|
@ -61,7 +61,7 @@ def __init__(self, raw, codec, title):
|
|||
# last update time
|
||||
pass
|
||||
elif id == 503: # Long title
|
||||
if not title or title == _('Unknown'):
|
||||
if not title or title == _('Unknown') or 'USER_CONTENT' in title:
|
||||
try:
|
||||
title = content.decode(codec)
|
||||
except:
|
||||
|
|
|
|||
Loading…
Reference in a new issue