mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
LibIMAP: Fix Parser::parse_disposition()
It didn't consume the initial opening "(" before.
This commit is contained in:
parent
35f1cec7ca
commit
2b23f3f216
Notes:
sideshowbarker
2024-07-17 07:43:05 +09:00
Author: https://github.com/vkoskiv Commit: https://github.com/SerenityOS/serenity/commit/2b23f3f216 Pull-request: https://github.com/SerenityOS/serenity/pull/20290 Reviewed-by: https://github.com/ADKaster ✅ Reviewed-by: https://github.com/BertalanD Reviewed-by: https://github.com/krkk
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…
Reference in a new issue