Skip to content

Commit

Permalink
fix(issue): replace & when sanitizing the summary (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
tagoro9 authored Jan 4, 2018
1 parent 9343dcd commit 2708f89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/git/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const sanitizeSummary = R.compose(
R.replace(/__+/, '_'),
R.replace(/\s|\(|\)/g, '_'),
R.replace(/\/|\./g, '-'),
R.replace(/,|\[|]|"|'|||@||`|:|\$|\?|\*|<|>/g, ''),
R.replace(/,|\[|]|"|'|||@||`|:|\$|\?|\*|<|>|&/g, ''),
R.toLower,
);

Expand Down

0 comments on commit 2708f89

Please sign in to comment.