Skip to content

Commit

Permalink
fix(subscribeToResult): throw error in subscriber with inner observable
Browse files Browse the repository at this point in the history
  • Loading branch information
kwonoj committed Aug 14, 2017
1 parent 74ff463 commit d7bffa9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/util/subscribeToResult.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export function subscribeToResult<T>(outerSubscriber: OuterSubscriber<any, any>,
destination.complete();
return null;
} else {
destination.syncErrorThrowable = true;
return result.subscribe(destination);
}
} else if (isArrayLike(result)) {
Expand Down

0 comments on commit d7bffa9

Please sign in to comment.