about summary refs log tree commit homepage
path: root/lib/PublicInbox/WwwAttach.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/WwwAttach.pm')
-rw-r--r--lib/PublicInbox/WwwAttach.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/PublicInbox/WwwAttach.pm b/lib/PublicInbox/WwwAttach.pm
index 754da13f..7e8496d7 100644
--- a/lib/PublicInbox/WwwAttach.pm
+++ b/lib/PublicInbox/WwwAttach.pm
@@ -17,8 +17,7 @@ sub get_attach_i { # ->each_part callback
         my $ct = $part->content_type;
         $ct = parse_content_type($ct) if $ct;
 
-        # discrete == type, we remain Debian wheezy-compatible
-        if ($ct && (($ct->{discrete} || '') eq 'text')) {
+        if ($ct && (($ct->{type} || '') eq 'text')) {
                 # display all text as text/plain:
                 my $cset = $ct->{attributes}->{charset};
                 if ($cset && ($cset =~ /\A[a-zA-Z0-9_\-]+\z/)) {