From 7c9dea623db94e4a8f6defda98a9db484e16d676 Mon Sep 17 00:00:00 2001 From: Ryan Voots Date: Mon, 14 Dec 2015 00:19:37 -0500 Subject: [PATCH] make the shorten plugin not add text --- plugins/shorten.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/shorten.pm b/plugins/shorten.pm index 7299265..e114103 100644 --- a/plugins/shorten.pm +++ b/plugins/shorten.pm @@ -6,7 +6,7 @@ sub { use WWW::Shorten::TinyURL; use WWW::Shorten 'TinyURL'; - print "New link: ", WWW::Shorten::TinyURL::makeashorterlink($said->{body}) // $said->{body}; + print WWW::Shorten::TinyURL::makeashorterlink($said->{body}) // $said->{body}; }