merge upstream

Disabled pattern lowercase matches
Update isup.lua
This commit is contained in:
2015-05-15 15:37:59 +02:00
parent 281d01859b
commit 643d2554bf
2 changed files with 5 additions and 4 deletions

View File

@ -112,7 +112,7 @@ function match_plugin(plugin, plugin_name, msg)
-- Go over patterns. If one matches is enough.
for k, pattern in pairs(plugin.patterns) do
local matches = match_pattern(pattern, msg.text, true)
local matches = match_pattern(pattern, msg.text)
if matches then
print("Nachricht stimmt überein mit ", pattern)