From a03b5ff63091f81328cd0acedde254a6a560505a Mon Sep 17 00:00:00 2001 From: David Haukeness Date: Mon, 28 Oct 2019 15:58:33 -0600 Subject: [PATCH] updated to use new config variable --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 1bf2249..36ce0d7 100644 --- a/main.go +++ b/main.go @@ -275,7 +275,7 @@ func printToView(viewName string, message string) { if err != nil { return err } else { - if UNICODE_EMOJI_SUPPORT { + if config.Basics.UnicodeEmojis { message = emojiUnicodeConvert(message) } fmt.Fprintf(updatingView, "%s\n", message)