diff --git a/src/operators/expand-support.ts b/src/operators/expand-support.ts index ad00cc9548..7b16b1969b 100644 --- a/src/operators/expand-support.ts +++ b/src/operators/expand-support.ts @@ -34,8 +34,8 @@ export class ExpandSubscriber extends OuterSubscriber { _next(value: any): void { const index = this.index++; - this.destination.next(value); if (this.active < this.concurrent) { + this.destination.next(value); let result = tryCatch(this.project)(value, index); if (result === errorObject) { this.destination.error(result.e);