1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:47:35 +00:00

WebDriver: Fix broken Optional<> returns through IPC

This commit is contained in:
Tobias Christiansen 2022-10-19 12:48:54 +02:00 committed by Linus Groh
parent 0e5cfccc71
commit e6f71d5e05

View file

@ -91,6 +91,7 @@ Messages::WebDriverSessionClient::GetNamedCookieResponse WebDriverConnection::ge
if (cookie.name == name)
return { cookie };
}
return Optional<Web::Cookie::Cookie> {};
}
}
return { {} };