Hi, I’m having an issue with Kotlin + RxJava3 + Sq...
# android
r
Hi, I’m having an issue with Kotlin + RxJava3 + SqlDelight with the RxJava3 extension. Given this interface:
Copy code
interface TasksDataSource {
    fun getTasks(forceUpdate: Boolean): Single<List<Task>> {
        if (forceUpdate) refreshTasks()
        return getTasks()
    }

    fun getTasks(): Single<List<Task>>

    ...
}
I have this issue when I try to implement it:
g
But it returns Tasks instead of Task
Looks that you use wrong class somewhere
r
oh
that was a silly question then
i didn’t notice it 🤦‍♂️
thx 🙂