mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix Feedbooks displaying author
This commit is contained in:
parent
81b734c5c1
commit
d22139cabc
@ -55,8 +55,8 @@ class FeedbooksStore(StorePlugin):
|
||||
if not id:
|
||||
continue
|
||||
|
||||
title = ''.join(data.xpath('//h5/a/text()'))
|
||||
author = ''.join(data.xpath('//h6/a/text()'))
|
||||
title = ''.join(data.xpath('//h5//a/text()'))
|
||||
author = ''.join(data.xpath('//h6//a/text()'))
|
||||
price = ''.join(data.xpath('//a[@class="buy"]/text()'))
|
||||
if not price:
|
||||
price = '$0.00'
|
||||
|
Loading…
x
Reference in New Issue
Block a user