about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2020-09-20 14:13:58 -0400
committerEric Wong <e@80x24.org>2020-12-26 19:30:42 +0000
commitc6ca576baf1700a8341ae7b6baa19257ac7deaa7 (patch)
tree7be74107586d92eea94fad1794570a4a99fa1095
parent8e9d4f877730dbdf4ebbd59cbd73a7a921c640e0 (diff)
downloadpublic-inbox-c6ca576baf1700a8341ae7b6baa19257ac7deaa7.tar.gz
(cherry picked from commit dc93c36eb62d36e649b9500b7f190687a3fbcffd)
-rw-r--r--lib/PublicInbox/MID.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/MID.pm b/lib/PublicInbox/MID.pm
index 369bb034..5aeffb8c 100644
--- a/lib/PublicInbox/MID.pm
+++ b/lib/PublicInbox/MID.pm
@@ -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;