mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:27:35 +00:00
LibWeb: Mark URLSearchParams::to_string() as const
This commit is contained in:
parent
42e76d8de9
commit
1b9f5fa28a
2 changed files with 2 additions and 2 deletions
|
@ -234,7 +234,7 @@ void URLSearchParams::sort()
|
|||
update();
|
||||
}
|
||||
|
||||
String URLSearchParams::to_string()
|
||||
String URLSearchParams::to_string() const
|
||||
{
|
||||
// return the serialization of this’s list.
|
||||
return url_encode(m_list, AK::URL::PercentEncodeSet::ApplicationXWWWFormUrlencoded);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue