Skip to content

Commit

Permalink
Remove x-sampa -> in x2i response
Browse files Browse the repository at this point in the history
"just takes up space", a correspondent noted
  • Loading branch information
xsduan committed Jan 6, 2018
1 parent 188df88 commit 7538939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x2i/x2i.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ exports.grab = function (message) {
var matches = [], match;
while (match = xsampaRegex.exec(message)) {
if (match[3] != '') {
matches += match[3] + ' \u2192 ' + convert(match[3]) + '\n';
matches += convert(match[3]) + '\n';
}

if (matches.length > 1024) {
Expand Down

0 comments on commit 7538939

Please sign in to comment.