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
When is Android client offline and I update property X and next update property Y then property X lost changes.
Steps to reproduce:
My phone is online
I create new movie document. DocumentSnapshot.getData() contain all document data (Snapshot: {name=Star wars (episode 0), stars=0, likes=0}, ID: 1mlmdMqsvrB9AucwuVvq)
Switch phone to flight mode
I update likes to 1. DocumentSnapshot.getData() contain all document data (Snapshot: {name=Star wars (episode 0), stars=0, likes=1}, ID: 1mlmdMqsvrB9AucwuVvq)
I update stars to 1. DocumentSnapshot.getData() contain all document data (Snapshot: {name=Star wars (episode 0), stars=1, likes=1}, ID: 1mlmdMqsvrB9AucwuVvq)
I update stars to 2. DocumentSnapshot.getData() lost changes in likes attribute (Snapshot: {name=Star wars (episode 0), stars=2, likes=0}, ID: 1mlmdMqsvrB9AucwuVvq)
Relevant Code:
Here is a test application. You must put google-services.json yourself.
Start app with internet connection
Click to ADD NEW MOVIE button
Switch phone to flight mode
Click to LIKES button
Click to STARS button
Click to STARS button
The text was updated successfully, but these errors were encountered:
Describe the problem
When is Android client offline and I update property X and next update property Y then property X lost changes.
Steps to reproduce:
Relevant Code:
Here is a test application. You must put google-services.json yourself.
The text was updated successfully, but these errors were encountered: