Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions book_maker/loader/epub_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ def _extract_paragraph(self, p):
def _process_paragraph(self, p, new_p, index, p_to_save_len, thread_safe=False):
if self.resume and index < p_to_save_len:
p.string = self.p_to_save[index]
new_p.string = self.p_to_save[index] # Fix: also update new_p to cached translation
else:
t_text = ""
if self.batch_flag:
Expand Down
Loading