mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-10-29 15:13:28 +00:00
xhr: fix content-type header typo
This commit is contained in:
@@ -56,8 +56,8 @@ pub const XMLHttpRequestBodyInit = union(XMLHttpRequestBodyInitTag) {
|
||||
.Blob => error.NotImplemented,
|
||||
.BufferSource => error.NotImplemented,
|
||||
.FormData => "multipart/form-data; boundary=TODO",
|
||||
.URLSearchParams => "application/x-www-form-urlencoded;charset=UTF-8",
|
||||
.String => "text/plain;charset=UTF-8",
|
||||
.URLSearchParams => "application/x-www-form-urlencoded; charset=UTF-8",
|
||||
.String => "text/plain; charset=UTF-8",
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user