From c817c774b1f2147c218aa5240d3aa64a2b271050 Mon Sep 17 00:00:00 2001 From: Akamaru Date: Mon, 15 Jun 2015 16:45:26 +0200 Subject: [PATCH] gsub "&" for twitter.lua --- plugins/twitter.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/twitter.lua b/plugins/twitter.lua index f75e737..bc0bc58 100644 --- a/plugins/twitter.lua +++ b/plugins/twitter.lua @@ -34,6 +34,7 @@ function run(msg, matches) local header = "Tweet von " .. response.user.name .. " (@" .. response.user.screen_name .. ")\n" local text = response.text + text = string.gsub(text, "&", "&") -- replace short URLs if response.entities.url then