]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/WwwText.pm
get rid of unnecessary bytes::length usage
[public-inbox.git] / lib / PublicInbox / WwwText.pm
index 9f46c6a603a7c495ee3fcae343185528fa97f4b6..db5060eaa460bf002c4377b93eb1b14c1cd5c7ba 100644 (file)
@@ -4,8 +4,7 @@
 # used for displaying help texts and other non-mail content
 package PublicInbox::WwwText;
 use strict;
-use warnings;
-use bytes (); # only for bytes::length
+use v5.10.1;
 use PublicInbox::Linkify;
 use PublicInbox::WwwStream;
 use PublicInbox::Hval qw(ascii_html);
@@ -43,7 +42,7 @@ sub get_text {
                        $txt = $gzf->translate($txt);
                        $txt .= $gzf->zflush;
                }
-               $hdr->[3] = bytes::length($txt);
+               $hdr->[3] = length($txt);
                return [ $code, $hdr, [ $txt ] ]
        }
 
@@ -191,7 +190,7 @@ EOF
 EOF
                my $pi_cfg = $ctx->{www}->{pi_cfg};
                for my $cr_name (@$cr) {
-                       my $urls = $pi_cfg->{"coderepo.$cr_name.cgiturl"};
+                       my $urls = $pi_cfg->get_all("coderepo.$cr_name.cgiturl");
                        my $path = "/path/to/$cr_name";
                        $cr_name = dq_escape($cr_name);