From: Eric Wong Date: Sun, 30 Aug 2015 01:26:46 +0000 (+0000) Subject: mid2path: clean MID of angle brackets '<>' X-Git-Tag: v1.0.0~959 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=1b41e3f4500541667b3b205f3d8683b4e1532384;p=public-inbox.git mid2path: clean MID of angle brackets '<>' We screwed up and needed to fix URL generation with '<>' in them. Regardless, users may attempt to copy and paste URLs with '<>' in them, do not punish them for that. --- diff --git a/lib/PublicInbox/MID.pm b/lib/PublicInbox/MID.pm index 8ca3c579..1b03fdce 100644 --- a/lib/PublicInbox/MID.pm +++ b/lib/PublicInbox/MID.pm @@ -39,7 +39,7 @@ sub mid2path { unless (defined $x38) { # compatibility with old links (or short Message-IDs :) - $mid = sha1_hex($mid); + $mid = sha1_hex(mid_clean($mid)); ($x2, $x38) = ($mid =~ /\A([a-f0-9]{2})([a-f0-9]{38})\z/); } "$x2/$x38";