You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In LoginAPIService and RegistrationAPIService, you use onErrorResumeNext() with a method that always throws an Exception, but never returns an Observable.
Isn't it better to just use doOnError() for that?
The text was updated successfully, but these errors were encountered:
In
LoginAPIService
andRegistrationAPIService
, you useonErrorResumeNext()
with a method that always throws anException
, but never returns anObservable
.Isn't it better to just use
doOnError()
for that?The text was updated successfully, but these errors were encountered: