unofficial mirror of meta@public-inbox.org
 help / color / mirror / Atom feed
* [PATCH] www_attach: remove unnecessary parse_content_type import
@ 2021-03-11 12:58 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2021-03-11 12:58 UTC (permalink / raw)
  To: meta

It's not needed since we have the handy eml->ct method.
---
 lib/PublicInbox/WwwAttach.pm | 5 +----
 1 file changed, 1 insertion(+), 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};

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-03-11 12:58 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-11 12:58 [PATCH] www_attach: remove unnecessary parse_content_type import Eric Wong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).