From 7538939a5b8df7571919cf6a6de6ae8c66d5514f Mon Sep 17 00:00:00 2001 From: Shane Duan Date: Sat, 6 Jan 2018 01:26:35 -0800 Subject: [PATCH] Remove x-sampa -> in x2i response "just takes up space", a correspondent noted --- x2i/x2i.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x2i/x2i.js b/x2i/x2i.js index 9778550..b82f0e1 100644 --- a/x2i/x2i.js +++ b/x2i/x2i.js @@ -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) {