aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2018-08-10 19:19:37 +1200
committerDavid Phillips <david@sighup.nz>2018-08-10 19:19:37 +1200
commita4eecef776084821369e7396fe9b08201f3765dd (patch)
treeba14ae7525ab7b587d0f63ba4ed91c11f3a90126
parentd12a8259304b26a19e89e742d4e2f4e651347847 (diff)
parent0c25d99faa4248c370781749b7e744f48ef56fea (diff)
downloadidalius-a4eecef776084821369e7396fe9b08201f3765dd.tar.xz
Merge branch 'master' into devel
-rw-r--r--Plugin/URL_Title.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Plugin/URL_Title.pm b/Plugin/URL_Title.pm
index 73fa498..fa34e20 100644
--- a/Plugin/URL_Title.pm
+++ b/Plugin/URL_Title.pm
@@ -37,7 +37,7 @@ sub message
return if ($config{url_on} == 0);
# Drawn from RFC 3986Β§2
- if ($what =~ /(https?:\/\/[a-z0-9\-\._~:\/\?#\[\]@\!\$&'()\*\+,;=]+)/i) {
+ if ($what =~ /(https?:\/\/[a-z0-9\-\._~:\/\?#\[\]@\!\$&'()\*\+,;=%]+)/i) {
$url = $1;
}
return unless $url;