Skip to content

Commit a5c6ec3

Browse files
committed
Add missing error handler call in Completable
1 parent d43c05c commit a5c6ec3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/rx/Completable.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1330,6 +1330,8 @@ public void onError(Throwable e) {
13301330
}
13311331

13321332
s.onError(e);
1333+
1334+
ERROR_HANDLER.handleError(e);
13331335
}
13341336

13351337
@Override
@@ -2258,4 +2260,4 @@ public void call() {
22582260
}
22592261
});
22602262
}
2261-
}
2263+
}

0 commit comments

Comments
 (0)