mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix #2028019 [Encountered an anomaly during bulk update of metadata](https://bugs.launchpad.net/calibre/+bug/2028019)
This commit is contained in:
parent
c42fb69d66
commit
edd108eada
@ -1221,9 +1221,9 @@ class MetadataBulkDialog(QDialog, Ui_MetadataBulkDialog):
|
|||||||
languages = self.languages.lang_codes
|
languages = self.languages.lang_codes
|
||||||
pubdate = adddate = None
|
pubdate = adddate = None
|
||||||
if self.apply_pubdate.isChecked():
|
if self.apply_pubdate.isChecked():
|
||||||
pubdate = qt_to_dt(self.pubdate.dateTime())
|
pubdate = qt_to_dt(self.pubdate.dateTime(), as_utc=False)
|
||||||
if self.apply_adddate.isChecked():
|
if self.apply_adddate.isChecked():
|
||||||
adddate = qt_to_dt(self.adddate.dateTime())
|
adddate = qt_to_dt(self.adddate.dateTime(), as_utc=False)
|
||||||
|
|
||||||
cover_action = None
|
cover_action = None
|
||||||
if self.cover_remove.isChecked():
|
if self.cover_remove.isChecked():
|
||||||
|
Loading…
x
Reference in New Issue
Block a user