mirror of
https://github.com/kovidgoyal/calibre.git
synced 2026-04-03 07:41:58 -04:00
Fix: Use MOBI fallback for KFX format when downloading news periodicals
Fixes #3033
This commit is contained in:
parent
9afc057ff8
commit
30a8a80d25
@ -277,8 +277,8 @@ class QueueBulk(QProgressDialog):
|
||||
|
||||
def fetch_scheduled_recipe(arg): # {{{
|
||||
fmt = prefs['output_format'].lower()
|
||||
# Never use AZW3 for periodicals...
|
||||
if fmt == 'azw3':
|
||||
# Never use AZW3 or KFX for periodicals...
|
||||
if fmt in ('azw3', 'kfx'):
|
||||
fmt = 'mobi'
|
||||
pt = PersistentTemporaryFile(suffix=f'_recipe_out.{fmt.lower()}')
|
||||
pt.close()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user