From 0db181e301a1edcb0ef1ff699f9f23e424c69bab Mon Sep 17 00:00:00 2001 From: Christian Savard Date: Mon, 12 Dec 2016 21:33:06 -0500 Subject: [PATCH] Fix issue with operator in skin tone logic --- src/utils/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/index.js b/src/utils/index.js index e65072f..f65a68e 100644 --- a/src/utils/index.js +++ b/src/utils/index.js @@ -27,7 +27,7 @@ function sanitize(emoji) { name, colons, emoticons, - skin: skin_tone || skin_variations ? 1 : null, + skin: skin_tone || (skin_variations ? 1 : null), native: unifiedToNative(unified), } }