@firebase/util 1.11.0-firebase-studio-sdk-integration.1adc0ae1f → 1.11.0-firebase-studio-sdk-integration.226be0bb1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +3 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm2017.js +3 -1
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.node.cjs.js +3 -1
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/node-esm/index.node.esm.js +3 -1
- package/dist/node-esm/index.node.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm2017.js
CHANGED
|
@@ -2129,7 +2129,9 @@ function isCloudWorkstation(host) {
|
|
|
2129
2129
|
return host.endsWith('.cloudworkstations.dev');
|
|
2130
2130
|
}
|
|
2131
2131
|
async function testConnectionAlive(endpoint) {
|
|
2132
|
-
const result = await fetch(endpoint
|
|
2132
|
+
const result = await fetch(endpoint, {
|
|
2133
|
+
credentials: 'include'
|
|
2134
|
+
});
|
|
2133
2135
|
return result.ok;
|
|
2134
2136
|
}
|
|
2135
2137
|
|