diff --git a/src/git/util.js b/src/git/util.js index 5d9b9133..85fbf447 100644 --- a/src/git/util.js +++ b/src/git/util.js @@ -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, );