I have a rails app using Google calendar API with push notifications for each calendar the user shares with my app.
when user updates an event from app, it creates an updatedEvent
request to API.
because the calendar is listed to push notification, it pushes a notification about some update to the calendar events (the same event of course ).
am i missing an attribute that can silent the notify?
when i get notify about changes and get the changed items from response, i compare the etag
of the event with the one that i get from the API response so i manged to avoid another update.
but it's still an unnecessary update.