Merge pull request #58862 from godotengine/revert-57934-js/4.x_fetch_creds

This commit is contained in:
Rémi Verschelde 2022-03-07 14:32:47 +01:00 committed by GitHub
commit 1421ce6780
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,7 +89,6 @@ const GodotFetch = {
method: method,
headers: headers,
body: body,
credentials: 'include',
};
obj.request = fetch(url, init);
obj.request.then(GodotFetch.onresponse.bind(null, id)).catch(GodotFetch.onerror.bind(null, id));