We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85c42dc commit a020787Copy full SHA for a020787
FirebaseStorage/CHANGELOG.md
@@ -1,3 +1,7 @@
1
+# 8.4.0
2
+- [fixed] Fixed an issue where Storage could not connect to local emulators using
3
+ http (#8389).
4
+
5
# 8.3.0
6
- [changed] Removed usage of a deprecated GTMSessionFetcher method (#8294).
7
FirebaseStorage/Sources/FIRStorage.m
@@ -363,7 +363,10 @@ - (void)ensureConfigured {
363
bucket:_storageBucket
364
auth:_auth
365
appCheck:_appCheck];
366
- _fetcherServiceForApp.allowLocalhostRequest = _usesEmulator;
+ if (_usesEmulator) {
367
+ _fetcherServiceForApp.allowLocalhostRequest = YES;
368
+ _fetcherServiceForApp.allowedInsecureSchemes = @[ @"http" ];
369
+ }
370
}
371
372
0 commit comments