mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Amazon metadata download: Recognize another markup variant for book comments
This commit is contained in:
parent
790b1a2b37
commit
0749ba592c
@ -676,6 +676,10 @@ class Worker(Thread): # Get details {{{
|
|||||||
desc = root.xpath('//div[@id="ps-content"]/div[@class="content"]')
|
desc = root.xpath('//div[@id="ps-content"]/div[@class="content"]')
|
||||||
if desc:
|
if desc:
|
||||||
ans = self._render_comments(desc[0])
|
ans = self._render_comments(desc[0])
|
||||||
|
else:
|
||||||
|
ns = tuple(self.selector('#bookDescription_feature_div .a-expander-content'))
|
||||||
|
if ns:
|
||||||
|
ans = self._render_comments(ns[0])
|
||||||
|
|
||||||
desc = root.xpath(
|
desc = root.xpath(
|
||||||
'//div[@id="productDescription"]/*[@class="content"]')
|
'//div[@id="productDescription"]/*[@class="content"]')
|
||||||
@ -971,7 +975,7 @@ class Worker(Thread): # Get details {{{
|
|||||||
class Amazon(Source):
|
class Amazon(Source):
|
||||||
|
|
||||||
name = 'Amazon.com'
|
name = 'Amazon.com'
|
||||||
version = (1, 2, 19)
|
version = (1, 2, 20)
|
||||||
minimum_calibre_version = (2, 82, 0)
|
minimum_calibre_version = (2, 82, 0)
|
||||||
description = _('Downloads metadata and covers from Amazon')
|
description = _('Downloads metadata and covers from Amazon')
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user