From 7534692cd42797deeb9142598e031ca3184951cf Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Thu, 11 Mar 2021 06:58:01 -0600 Subject: www_attach: remove unnecessary parse_content_type import It's not needed since we have the handy eml->ct method. --- lib/PublicInbox/WwwAttach.pm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/PublicInbox/WwwAttach.pm b/lib/PublicInbox/WwwAttach.pm index 93c43af8..a6c68a3f 100644 --- a/lib/PublicInbox/WwwAttach.pm +++ b/lib/PublicInbox/WwwAttach.pm @@ -6,7 +6,6 @@ package PublicInbox::WwwAttach; # internal package use strict; 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}; -- cgit v1.2.3-24-ge0c7