@firebase/storage 0.10.0 → 0.10.1-20230117221326

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.
@@ -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 ((!hitServer ||
699
- isRetryStatusCode(status, this.additionalRetryCodes_)) &&
700
- this.retry) {
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.0";
3348
+ const version = "0.10.1-20230117221326";
3349
3349
 
3350
3350
  /**
3351
3351
  * @license