Skip to content

Commit

Permalink
util: fix inverted missing translations logic (#5680)
Browse files Browse the repository at this point in the history
  • Loading branch information
quisquous authored Jul 10, 2023
1 parent 16e45e2 commit 096a45c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/find_missing_timeline_translations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ const findMissingTimeline = (
errorFunc(...value);
}

return keys.length === 0;
return keys.length !== 0;
};

const findMissingTriggers = (
Expand Down

0 comments on commit 096a45c

Please sign in to comment.