mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:34:59 +00:00
LibIMAP: Fix Parser::parse_disposition()
It didn't consume the initial opening "(" before.
This commit is contained in:
parent
35f1cec7ca
commit
2b23f3f216
1 changed files with 1 additions and 0 deletions
|
@ -561,6 +561,7 @@ Vector<DeprecatedString> Parser::parse_langs()
|
|||
}
|
||||
Tuple<DeprecatedString, HashMap<DeprecatedString, DeprecatedString>> Parser::parse_disposition()
|
||||
{
|
||||
consume("("sv);
|
||||
auto disposition_type = parse_string();
|
||||
consume(" "sv);
|
||||
auto disposition_vals = parse_body_fields_params();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue