about summary refs log tree commit homepage
path: root/lib/PublicInbox/WwwAttach.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-03-11 06:58:01 -0600
committerEric Wong <e@80x24.org>2021-03-11 16:35:21 -0400
commit7534692cd42797deeb9142598e031ca3184951cf (patch)
treeb10b55ee67860d06543c637ec6af2531f43f0fa8 /lib/PublicInbox/WwwAttach.pm
parent764105971054ce2352e38868fd1d3ae4e08c6784 (diff)
downloadpublic-inbox-7534692cd42797deeb9142598e031ca3184951cf.tar.gz
It's not needed since we have the handy eml->ct method.
Diffstat (limited to 'lib/PublicInbox/WwwAttach.pm')
-rw-r--r--lib/PublicInbox/WwwAttach.pm5
1 files changed, 1 insertions, 4 deletions
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};