@firebase/storage 0.10.0 → 0.10.1-canary.68369740a

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.
@@ -703,9 +703,9 @@ class NetworkRequest {
703
703
  this.pendingConnection_ = null;
704
704
  const hitServer = connection.getErrorCode() === ErrorCode.NO_ERROR;
705
705
  const status = connection.getStatus();
706
- if ((!hitServer ||
707
- isRetryStatusCode(status, this.additionalRetryCodes_)) &&
708
- this.retry) {
706
+ if (!hitServer ||
707
+ (isRetryStatusCode(status, this.additionalRetryCodes_) &&
708
+ this.retry)) {
709
709
  const wasCanceled = connection.getErrorCode() === ErrorCode.ABORT;
710
710
  backoffCallback(false, new RequestEndStatus(false, null, wasCanceled));
711
711
  return;
@@ -3353,7 +3353,7 @@ class FirebaseStorageImpl {
3353
3353
  }
3354
3354
 
3355
3355
  const name = "@firebase/storage";
3356
- const version = "0.10.0";
3356
+ const version = "0.10.1-canary.68369740a";
3357
3357
 
3358
3358
  /**
3359
3359
  * @license