From 6c8032a7df3afc65e49f1f9b943fa88ab2145991 Mon Sep 17 00:00:00 2001 From: Shawn Thompson Date: Tue, 18 Apr 2017 18:08:21 -0700 Subject: [PATCH] Fixed userinfo breaking with complex passwords --- src/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser.rs b/src/parser.rs index 92f27979..38b02c79 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -685,7 +685,7 @@ impl<'a> Parser<'a> { } last_at = Some((char_count, remaining.clone())) }, - '/' | '?' | '#' => break, + '/' => break, '\\' if scheme_type.is_special() => break, _ => (), }