1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 08:18:12 +00:00

LibWeb: Remove more DeprecatedString null state remnants

This commit is contained in:
Ali Mohammad Pur 2023-10-13 22:50:34 +03:30 committed by Tim Flynn
parent 988c6568a9
commit 0937d88869
4 changed files with 7 additions and 7 deletions

View file

@ -1963,7 +1963,7 @@ DeprecatedString Document::cookie(Cookie::Source source)
{
if (auto* page = this->page())
return page->client().page_did_request_cookie(m_url, source);
return {};
return DeprecatedString::empty();
}
void Document::set_cookie(StringView cookie_string, Cookie::Source source)