mobizt / Firebase-ESP32

[DEPRECATED]🔥 Firebase RTDB Arduino Library for ESP32. The complete, fast, secured and reliable Firebase Arduino client library that supports CRUD (create, read, update, delete) and Stream operations.
MIT License
413 stars 119 forks source link

HELP - streamCallback #176

Closed vanderareosa closed 3 years ago

vanderareosa commented 3 years ago

When I update some value directly in the firebase console, the streamCallBack only shows the path and the value of the field that has changed. But when I make the change through my app the stream shows all the fields of my object, even the fields that haven't changed. How can I solve this? I only need to know the field that has been changed to take some action.

mobizt commented 3 years ago

Fix your app on how it makes change to database.

From your explanation, your app changes whole data at the stream path instead of change to some child node.

The stream event data is the changes under your stream path on the database.

vanderareosa commented 3 years ago

correct! Thanks so much. I did the changes and its all works fine.