Fix /rainbowme and /rainbow breaking apart utf-16 emoji

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/21833/head
Michael Telatynski 2019-07-25 19:25:28 +01:00
parent cef67d5784
commit 657a11de83
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ export function hueToRGB(h, s, l) {
export function textToHtmlRainbow(str) {
const frequency = 360 / str.length;
return str.split("").map((c, i) => {
return Array.from(str).map((c, i) => {
const [r, g, b] = hueToRGB(i * frequency, 1.0, 0.5);
return '<font color="#' +
r.toString(16).padStart(2, "0") +