]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/WwwStream.pm
get rid of unnecessary bytes::length usage
[public-inbox.git] / lib / PublicInbox / WwwStream.pm
index 4db8dc55965da86e33e06a5ecea46e37975f9967..adcb5fe24314305c436e07048983c6dbaf8d9401 100644 (file)
@@ -7,12 +7,12 @@
 # See PublicInbox::GzipFilter parent class for more info.
 package PublicInbox::WwwStream;
 use strict;
+use v5.10.1;
 use parent qw(Exporter PublicInbox::GzipFilter);
 our @EXPORT_OK = qw(html_oneshot);
-use bytes (); # length
 use PublicInbox::Hval qw(ascii_html prurl ts2str);
 our $TOR_URL = 'https://www.torproject.org/';
-our $CODE_URL = [ qw(http://ou63pmih66umazou.onion/public-inbox.git
+our $CODE_URL = [ qw(http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/public-inbox.git
        https://public-inbox.org/public-inbox.git) ];
 
 sub base_url ($) {
@@ -216,7 +216,7 @@ sub html_oneshot ($$;$) {
        };
        $ctx->zmore($$sref) if $sref;
        my $bdy = $ctx->zflush(_html_end($ctx));
-       $res_hdr->[3] = bytes::length($bdy);
+       $res_hdr->[3] = length($bdy);
        [ $code, $res_hdr, [ $bdy ] ]
 }