From 17679eb51057783aaae616ca29c0735571686c0e Mon Sep 17 00:00:00 2001 From: unethical Date: Sun, 5 May 2019 01:31:34 +0000 Subject: [PATCH] Update 'tool/irssi_cf_alturl.pl' --- tool/irssi_cf_alturl.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tool/irssi_cf_alturl.pl b/tool/irssi_cf_alturl.pl index 57d345b..6952711 100644 --- a/tool/irssi_cf_alturl.pl +++ b/tool/irssi_cf_alturl.pl @@ -185,12 +185,12 @@ sub GotUrl { if ( $cfg_useshort == 1 ) { if ( length($myurl) > $cfg_minurllen ) { deb("$target Creating Short URL for $myurl"); - $url = 'https://tinyurl.com/api-create.php?url='.$result; + $url = 'https://ux.nu/api/short?format=plain&url='.$result; $browser = LWP::UserAgent->new; - $browser->agent("Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0"); + $browser->agent("cloudflare-tor (Thank you for this service)"); $response = $browser->get($url); $answer = $response->content; - if ( index( $answer, 'http://tinyurl.com/' ) == 0 ) { + if ( index( $answer, 'https://ux.nu/' ) == 0 ) { $myurl = $answer; } }