Skip to content

Commit

Permalink
tag: fix tag translate loading bug
Browse files Browse the repository at this point in the history
  • Loading branch information
violet-dev committed Nov 4, 2023
1 parent b1b86e8 commit 61908ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/component/hitomi/tag_translate.dart
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class TagTranslate {
return null;
}

if (!translateMap.containsKey(key)) {
if (translateMap.containsKey(key)) {
return null;
}

Expand Down

0 comments on commit 61908ef

Please sign in to comment.