Skip to content

Commit

Permalink
RegisterObservable should use flatMap instead of flatMapLatest
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwdan committed Sep 27, 2016
1 parent 9957bc9 commit b2df7f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Observable/RegisterObservable.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ function () use (&$completed, $observer, $unregister) {
), $scheduler);

$invocationSubscription = $invocationMsg
->flatMapLatest(function (InvocationMessage $msg) {
->flatMap(function (InvocationMessage $msg) {

try {
if ($this->extended) {
Expand Down

0 comments on commit b2df7f3

Please sign in to comment.