I ran into that same issue, and fixed it by replac...
# codereview
l
I ran into that same issue, and fixed it by replacing
Observable.error<Throwable>(throwable)
with
Observable.error(throwable as Throwable)
👍 1