I don't think you need `Flowable` here. This type ...
# rx
r
I don't think you need
Flowable
here. This type of call will either complete or it won't. You can just use
Single
. If you want something else to end up in your subscriber, you can just use
map
👍 1