-
Notifications
You must be signed in to change notification settings - Fork 269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(fcm): Add FcmOptions on MulticastMessage #439
feat(fcm): Add FcmOptions on MulticastMessage #439
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR @pavlospt. Looks mostly good. Just a couple of updates needed.
src/main/java/com/google/firebase/messaging/MulticastMessage.java
Outdated
Show resolved
Hide resolved
Hey @hiranya911 thank you for your review. I have updated the PR accordingly 😄 ! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. LGTM 👍
@hiranya911 Sorry for the question, but since this is a thing we will be needing ASAP, I feel like I need to ask 😂 . Do we know when we can have a release including it? 😄 |
@pavlospt we can try to get a release out next week. |
@hiranya911 cool thank you very much 😄 ! |
Hey @hiranya911 is the release still planned to be published this week 😄 ? |
This change is now released in v6.14.0 Thank you for your contribution! |
MulticastMessage
does not seem to supportFcmOptions
. This PR introducesFcmOptions
inMulticastMessage
s.The implementation follows the same approach with the NodeJS SDK.
https://github.com/firebase/firebase-admin-node/blob/master/src/messaging/messaging.ts#L361
Resolves #440