aboutsummaryrefslogtreecommitdiff
path: root/plugin/url_title.pm
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/url_title.pm')
-rw-r--r--plugin/url_title.pm5
1 files changed, 1 insertions, 4 deletions
diff --git a/plugin/url_title.pm b/plugin/url_title.pm
index 654b2ae..f36ad6d 100644
--- a/plugin/url_title.pm
+++ b/plugin/url_title.pm
@@ -6,7 +6,6 @@ use strict;
use warnings;
use HTTP::Tiny;
use HTML::HeadParser;
-use IRC::Utils qw(strip_color strip_formatting);
my %config;
@@ -19,11 +18,9 @@ sub configure {
sub message
{
- my ($self, $me, $who, $where, $what) = @_;
+ my ($self, $me, $who, $where, $raw_what, $what) = @_;
my $url;
- $what = strip_color(strip_formatting($what));
-
if ($what =~ /(https?:\/\/[^ ]+)/i) {
$url = $1;
}