Skip to content

Commit 92432ec

Browse files
committed
Fix issue where we ping an endpoint that hasn't been implemented
1 parent d5e5795 commit 92432ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/storage/src/service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ export function connectStorageEmulator(
150150
const useSsl = isCloudWorkstation(host);
151151
// Workaround to get cookies in Firebase Studio
152152
if (useSsl) {
153-
void pingServer(`https://${storage.host}`);
153+
void pingServer(`https://${storage.host}/b`);
154154
updateEmulatorBanner('Storage', true);
155155
}
156156
storage._isUsingEmulator = true;

0 commit comments

Comments
 (0)