diff --git a/build_data.js b/build_data.js index cdbb5475a..546c937a9 100644 --- a/build_data.js +++ b/build_data.js @@ -388,11 +388,11 @@ function generateTaginfo(presets, fields) { return; } - var isNewDescription = currentTaginfoEntries[0].description.split(' ,') + var isNewDescription = currentTaginfoEntries[0].description.split(', ') .indexOf(tag.description) === -1; if (isNewDescription) { - currentTaginfoEntries[0].description += ", " + tag.description; + currentTaginfoEntries[0].description += ', ' + tag.description; } }