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
The FCM router (and any router which uses the common build_message code) only checks the notification size limit against the data that is being passed through, not the final payload:
This check could allow payloads which have a small enough data size but too much overall data in the final payload. The check should be moved so it is done on the final payload.
The text was updated successfully, but these errors were encountered:
AzureMarker
changed the title
FCM router notification size limit check is too conservative
FCM/ADM router notification size limit check is inaccurate
Aug 4, 2020
The FCM router (and any router which uses the common
build_message
code) only checks the notification size limit against the data that is being passed through, not the final payload:autopush-rs/autoendpoint/src/routers/common.rs
Line 17 in 9cdb14a
This check could allow payloads which have a small enough data size but too much overall data in the final payload. The check should be moved so it is done on the final payload.
The text was updated successfully, but these errors were encountered: