mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-24 07:26:13 +01:00
Fix ampersands in titles not displaying in the Cover Browser
This commit is contained in:
parent
83a095de32
commit
b9dfec645f
1 changed files with 1 additions and 1 deletions
|
|
@ -70,7 +70,7 @@ def caption(self, index):
|
|||
ans = ''
|
||||
except:
|
||||
ans = ''
|
||||
return ans
|
||||
return ans.replace('&', '&&')
|
||||
|
||||
def subtitle(self, index):
|
||||
try:
|
||||
|
|
|
|||
Loading…
Reference in a new issue