Skip to content

Commit

Permalink
fix(DuplicateIds): detectDuplicateIds flag didn't work correctly
Browse files Browse the repository at this point in the history
Thx to Loïc Padier (https://github.com/lPadier) for fixing this issue. I only did commit this myself
because somehow Semantic Release broke again
  • Loading branch information
Gertjan Reynaert committed Jan 3, 2017
1 parent cc2fe74 commit 0fd3772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/manageTranslations.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default ({
},

outputDuplicateKeys: duplicateIds => {
if (detectDuplicateIds) return;
if (!detectDuplicateIds) return;

printers.printDuplicateIds(duplicateIds);
},
Expand Down

0 comments on commit 0fd3772

Please sign in to comment.