From 39608e92053f6829ce0df0e6355158fdd738bade Mon Sep 17 00:00:00 2001 From: Akamaru Date: Mon, 13 Jul 2015 23:01:19 +0200 Subject: [PATCH] ignoring urbanup.com in url_title.lua --- plugins/url_title.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/url_title.lua b/plugins/url_title.lua index 06c1893..c5902eb 100644 --- a/plugins/url_title.lua +++ b/plugins/url_title.lua @@ -51,8 +51,9 @@ function run(msg, matches) string.match(title, "eBay") or string.match(msg.text, "twitch.tv") or string.match(msg.text, "steamcommunity.com/app/") or - string.match(msg.text, "deviantart.com") then - print('Nicht gültig, da "'..title..'"') + string.match(msg.text, "deviantart.com") or + string.match(msg.text, "urbanup.com/") then + print('Ungültig, da "'..title..'"') else return title end