Skip to content

Commit

Permalink
unmark问题修复
Browse files Browse the repository at this point in the history
  • Loading branch information
abse4411 committed Apr 20, 2024
1 parent 350c754 commit d236ecb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion store/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ def clear_translated_lines(self, lang: str, say_only=True):
for v in dialogue_data:
ddocid_map[v.doc_id] = v['block']
for i, b in enumerate(v['block']):
if b['new_code'] is None:
if b['new_code'] is None or b['what'] is None:
continue
if not self._is_say_block(b) and say_only:
continue
Expand Down

0 comments on commit d236ecb

Please sign in to comment.