Slide 13
Slide 13 text
Single line vs Multi line
Fix ride changes observable
Fix ride changes observable
The ride changes, which are emitted from the Firebase RTD, notify our RideChangeObserver.
The observer doesn't had any onError handling for it.
Because our observer hadn't implemented any error handling the app crashes if, for instance, we have a poor internet
connection.
Now I added the error handling in the following way:
● Error raise
● Catch error and unsubscribe
● Subscribe again to get notified over Firebase changes again
I decided to fix this in this way because ....
Resolves: #123