Skip to content

Commit

Permalink
fix(Effects): Do not complete effects if one source errors or completes
Browse files Browse the repository at this point in the history
Closes #232
  • Loading branch information
MikeRyanDev committed Aug 18, 2017
1 parent 543f535 commit d5315a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/effects/src/effect_sources.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ export class EffectSources extends Subject<any> {
exhaustMap.call(source$, resolveEffectSource),
(output: EffectNotification) => {
verifyOutput(output, this.errorReporter);

return output.notification;
}
),
(notification: Notification<any>) => notification.kind == 'N',
(notification: Notification<any>) => notification.kind == 'N'
)
)
);
Expand Down

0 comments on commit d5315a1

Please sign in to comment.