mirror of
https://github.com/outline/outline.git
synced 2025-12-20 10:09:43 -06:00
Send cookies with S3 POST upload (#10562)
This commit is contained in:
@@ -88,6 +88,7 @@ export const uploadFile = async (
|
||||
xhr.addEventListener("loadend", () => {
|
||||
resolve(xhr.readyState === 4 && xhr.status >= 200 && xhr.status < 400);
|
||||
});
|
||||
xhr.withCredentials = true;
|
||||
xhr.open("POST", data.uploadUrl, true);
|
||||
xhr.send(formData);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user