Quote:
Originally Posted by Freakeao
I've got a book with a mobi-asin GUID, I run this pluging (and no other metadata downloads). I have scan multiple editions and get ASIN checked. But I always get matched to the hard cover. Not the Kindle edition or the ebook edition.
All the metadata will probably be the same between editions I'm looking at (same publishers, etc) but I'd like to get the IDs for the right edition. Is this just because publishers are all this same for this particular book? Is there a way to prefer ebook editions?
|
For this, in the line in __init__.py that reads
Code:
if identifier_name in ('amazon', 'asin') or identifier_name.startswith('amazon_'):
I added mobi-asin to the list, so that the line reads
Code:
if identifier_name in ('amazon', 'asin', 'mobi-asin') or identifier_name.startswith('amazon_'):