Prefer kepub (#1439)

Only offer kepub download URL over Kobo sync API when available
This commit is contained in:
Dave Mogle 2020-08-17 10:31:07 -04:00
parent 843279bacb
commit d951ee4b83
1 changed files with 3 additions and 1 deletions

View File

@ -344,7 +344,9 @@ def get_seriesindex(book):
def get_metadata(book):
download_urls = []
for book_data in book.data:
kepub = [data for data in book.data if data.format == 'KEPUB']
for book_data in kepub if len(kepub) > 0 else book.data:
if book_data.format not in KOBO_FORMATS:
continue
for kobo_format in KOBO_FORMATS[book_data.format]: