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 observeConnectDevice method you need to check if emitter is not disposed before send error or onNext. Please change this code emitter.onError(e) to next if (emitter.isDisposed.not()) emitter.onError(e)
The text was updated successfully, but these errors were encountered:
In observeConnectDevice method you need to check if emitter is not disposed before send error or onNext. Please change this code
emitter.onError(e)
to nextif (emitter.isDisposed.not()) emitter.onError(e)
The text was updated successfully, but these errors were encountered: