@firebase/storage 0.10.0 → 0.10.1
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/CHANGELOG.md +10 -0
- package/dist/index.browser.cjs.js +4 -4
- package/dist/index.browser.cjs.js.map +1 -1
- package/dist/index.esm2017.js +4 -4
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +4 -4
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +4 -4
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/node-esm/index.node.esm.js +4 -4
- package/dist/node-esm/index.node.esm.js.map +1 -1
- package/dist/node-esm/test/unit/testshared.d.ts +1 -1
- package/dist/test/unit/testshared.d.ts +1 -1
- package/package.json +5 -5
|
@@ -695,9 +695,9 @@ class NetworkRequest {
|
|
|
695
695
|
this.pendingConnection_ = null;
|
|
696
696
|
const hitServer = connection.getErrorCode() === ErrorCode.NO_ERROR;
|
|
697
697
|
const status = connection.getStatus();
|
|
698
|
-
if (
|
|
699
|
-
isRetryStatusCode(status, this.additionalRetryCodes_)
|
|
700
|
-
|
|
698
|
+
if (!hitServer ||
|
|
699
|
+
(isRetryStatusCode(status, this.additionalRetryCodes_) &&
|
|
700
|
+
this.retry)) {
|
|
701
701
|
const wasCanceled = connection.getErrorCode() === ErrorCode.ABORT;
|
|
702
702
|
backoffCallback(false, new RequestEndStatus(false, null, wasCanceled));
|
|
703
703
|
return;
|
|
@@ -3345,7 +3345,7 @@ class FirebaseStorageImpl {
|
|
|
3345
3345
|
}
|
|
3346
3346
|
|
|
3347
3347
|
const name = "@firebase/storage";
|
|
3348
|
-
const version = "0.10.
|
|
3348
|
+
const version = "0.10.1";
|
|
3349
3349
|
|
|
3350
3350
|
/**
|
|
3351
3351
|
* @license
|