mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-25 03:52:09 +03:00
Accept '.' in cookie-value
This commit is contained in:
parent
d6767f7bc1
commit
5b17e6f9ee
@ -171,6 +171,7 @@ fn cookie_value(reader: &mut Reader) -> ParseResult<'static, CookieValue> {
|
|||||||
|| *c == '%'
|
|| *c == '%'
|
||||||
|| *c == '['
|
|| *c == '['
|
||||||
|| *c == ']'
|
|| *c == ']'
|
||||||
|
|| *c == '.'
|
||||||
});
|
});
|
||||||
Ok(CookieValue { value })
|
Ok(CookieValue { value })
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user