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
commit 0937d88869
Notes: sideshowbarker 2024-07-16 20:08:14 +09:00
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)