]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Hval.pm
get rid of Message-ID compression entirely
[public-inbox.git] / lib / PublicInbox / Hval.pm
index 0445e5759cb045df3778bb40c915a201c748111f..d65ad3bb354054e64200dddb3935cc5c8ebc61a0 100644 (file)
@@ -8,7 +8,7 @@ use warnings;
 use fields qw(raw href);
 use Encode qw(find_encoding);
 use URI::Escape qw(uri_escape_utf8);
-use PublicInbox::MID qw/mid_clean mid_compress/;
+use PublicInbox::MID qw/mid_clean/;
 
 my $enc_ascii = find_encoding('us-ascii');
 
@@ -27,7 +27,7 @@ sub new {
 sub new_msgid {
        my ($class, $msgid, $no_compress) = @_;
        $msgid = mid_clean($msgid);
-       $class->new($msgid, $no_compress ? $msgid : mid_compress($msgid));
+       $class->new($msgid, $msgid);
 }
 
 sub new_oneline {