diff --git a/discord/discord.lua b/discord/discord.lua index 5a38935..1831bd3 100644 --- a/discord/discord.lua +++ b/discord/discord.lua @@ -50,7 +50,7 @@ function discord:log(bypass_use_discord) end -- luacheck: ignore 212 -function discord.send(premature, self, data) -- TODO: premature is not used, remove it if possible +function discord.send(premature, self, data) local httpc, err = http.new() if not httpc then self.logger:log(ngx.ERR, "can't instantiate http object : " .. err) diff --git a/slack/slack.lua b/slack/slack.lua index 1f37af3..25fd2c6 100644 --- a/slack/slack.lua +++ b/slack/slack.lua @@ -50,7 +50,7 @@ function slack:log(bypass_use_slack) end -- luacheck: ignore 212 -function slack.send(premature, self, data) -- TODO: premature is not used, remove it if possible +function slack.send(premature, self, data) local httpc, err = http.new() if not httpc then self.logger:log(ngx.ERR, "can't instantiate http object : " .. err) diff --git a/webhook/webhook.lua b/webhook/webhook.lua index 8ef19ca..94a54c8 100644 --- a/webhook/webhook.lua +++ b/webhook/webhook.lua @@ -50,7 +50,7 @@ function webhook:log(bypass_use_webhook) end -- luacheck: ignore 212 -function webhook.send(premature, self, data) -- TODO: premature is not used, remove it if possible +function webhook.send(premature, self, data) local httpc, err = http.new() if not httpc then self.logger:log(ngx.ERR, "can't instantiate http object : " .. err)