1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:27:44 +00:00

Ladybird: Do not domain match on cookie updates

This matches a corresponding change to Serenity's Browser.
This commit is contained in:
Timothy Flynn 2022-12-05 10:15:41 -05:00 committed by Andrew Kaster
parent 5b8d1a6f61
commit a0cd260410
3 changed files with 6 additions and 6 deletions

View file

@ -974,10 +974,10 @@ void WebContentView::notify_server_did_set_cookie(Badge<WebContentClient>, AK::U
on_set_cookie(url, cookie, source);
}
void WebContentView::notify_server_did_update_cookie(Badge<WebContentClient>, AK::URL const& url, Web::Cookie::Cookie const& cookie)
void WebContentView::notify_server_did_update_cookie(Badge<WebContentClient>, Web::Cookie::Cookie const& cookie)
{
if (on_update_cookie)
on_update_cookie(url, cookie);
on_update_cookie(cookie);
}
void WebContentView::notify_server_did_update_resource_count(i32 count_waiting)