From e475e380e9d605516451ef7354b97d6bd98d93e3 Mon Sep 17 00:00:00 2001 From: chotaire Date: Fri, 19 Apr 2019 02:42:40 +0200 Subject: [PATCH] Fixed outProtocol variable name (cherry picked from commit 41949cb76e2462e3cac60a2dd491dd200c02c3e5) --- internal/tengo/outmessage.tengo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/tengo/outmessage.tengo b/internal/tengo/outmessage.tengo index 47c9949a..79baea22 100644 --- a/internal/tengo/outmessage.tengo +++ b/internal/tengo/outmessage.tengo @@ -13,7 +13,7 @@ text := import("text") // start - strip irc colors // if we're not sending to an irc bridge we strip the IRC colors if inProtocol == "irc" { - if OutProtocol != "irc" { + if outProtocol != "irc" { re := text.re_compile(`\x03(?:\d{1,2}(?:,\d{1,2})?)?|[[:cntrl:]]`) msgText=re.replace(msgText,"") }