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-09-20 21:11:54 +0000
commitdc93c36eb62d36e649b9500b7f190687a3fbcffd (patch)
tree478b7c452db86adc1f07d5bcb06dcbfed332f233
parent3b5d3d1910f1db526a488142c01f42db5255ac72 (diff)
downloadpublic-inbox-dc93c36eb62d36e649b9500b7f190687a3fbcffd.tar.gz
-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;