]> Sergey Matveev's repositories - public-inbox.git/commitdiff
mid: drop repeated ';' in mid_escape() regular expression
authorKyle Meyer <kyle@kyleam.com>
Sun, 20 Sep 2020 18:13:58 +0000 (14:13 -0400)
committerEric Wong <e@80x24.org>
Sun, 20 Sep 2020 21:11:54 +0000 (21:11 +0000)
lib/PublicInbox/MID.pm

index 369bb034c8dd9d5c03ce4beb2e35d1c5fc632a9c..5aeffb8c675bb2882a1f50b92505206e386191e9 100644 (file)
@@ -125,7 +125,7 @@ sub uniq_mids ($;$) {
 }
 
 # RFC3986, section 3.3:
-sub MID_ESC () { '^A-Za-z0-9\-\._~!\$\&\';\(\)\*\+,;=:@' }
+sub MID_ESC () { '^A-Za-z0-9\-\._~!\$\&\'\(\)\*\+,;=:@' }
 sub mid_escape ($) { uri_escape_utf8($_[0], MID_ESC) }
 
 1;