I just spent 15 min on this piece of code: `myComp...
# rx
d
I just spent 15 min on this piece of code:
myCompletable.toFlowable()
and wondered, why it didnt work as i wanted it to.. turns out it returned a
Flowable<Completable>
💀 if i use
myCompletable.toSingleDefault(true).toFlowable()
its working.. am i missing something here?