am414
10/30/2019, 7:58 PMfun getAllFavMoviesIDs(): Observable<ArrayList<Int>> {
val ids = arrayListOf<Int>()
favVM.favObservable!!.observe( this, Observer { favMovies ->
//collecting ids
} )
return Observable.just(ids)
}