Anyone else seen this error when trying to convert...
# coroutines
r
Anyone else seen this error when trying to convert a
Flow<T>
to an
Observable<T>
j
Is your type variable nullable?
okay it's possibly nullable. you need
<T : Any>
r
Yep that was it. 🤦