Skip to content

Commit

Permalink
fix: 🐛 修复显示填充页时无法翻译的 bug
Browse files Browse the repository at this point in the history
  • Loading branch information
hymbz committed Jul 3, 2024
1 parent 933f65d commit 4bab5fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Manga/actions/translation/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const setImgTranslationEnbale = (list: number[], enbale: boolean) => {
setState((state) => {
for (const i of list) {
const img = state.imgList[i];
if (!img) return;
if (!img) continue;

if (enbale) {
if (state.option.translation.forceRetry) {
Expand Down

0 comments on commit 4bab5fa

Please sign in to comment.