]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/WwwAttach.pm
get rid of unnecessary bytes::length usage
[public-inbox.git] / lib / PublicInbox / WwwAttach.pm
index 93c43af891ac366a23d69dd29c94b78853931e1b..c17394afe8709b61caae9315f549d53c84ad758d 100644 (file)
@@ -4,9 +4,8 @@
 # For retrieving attachments from messages in the WWW interface
 package PublicInbox::WwwAttach; # internal package
 use strict;
+use v5.10.1;
 use parent qw(PublicInbox::GzipFilter);
-use bytes (); # only for bytes::length
-use PublicInbox::EmlContentFoo qw(parse_content_type);
 use PublicInbox::Eml;
 
 sub referer_match ($) {
@@ -31,9 +30,7 @@ sub get_attach_i { # ->each_part callback
        return if $idx ne $ctx->{idx}; # [0-9]+(?:\.[0-9]+)+
        my $res = $ctx->{res};
        $res->[0] = 200;
-       my $ct = $part->content_type;
-       $ct = parse_content_type($ct) if $ct;
-
+       my $ct = $part->ct;
        if ($ct && (($ct->{type} || '') eq 'text')) {
                # display all text as text/plain:
                my $cset = $ct->{attributes}->{charset};
@@ -53,7 +50,7 @@ sub get_attach_i { # ->each_part callback
                        $part = "Deep-linking prevented\n";
                }
        }
-       push @{$res->[1]}, 'Content-Length', bytes::length($part);
+       push @{$res->[1]}, 'Content-Length', length($part);
        $res->[2]->[0] = $part;
 }