Jelajahi Sumber

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

Rémi Verschelde 3 tahun lalu
induk
melakukan
1421ce6780
1 mengubah file dengan 0 tambahan dan 1 penghapusan
  1. 0 1
      platform/javascript/js/libs/library_godot_fetch.js

+ 0 - 1
platform/javascript/js/libs/library_godot_fetch.js

@@ -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));