-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Low
-
Component/s: Notifications - Email
-
Severity 2 - Major
Priority - Low
T-shirt Sizing - Small
Ideal ETA - October 31
This issue affects iOS mobile app and is preventing push notifications from making any sound or vibration.
The fix is to add a new "sound" variable to the push notification payload that we send to our push notification service which relays the request to Apple push notification servers. Thus this can only be fixed on the server-side.
This is the iOS push notification payload code inside the mobile REST plugin (https://stash.atlassian.com/projects/MOB/repos/confluence-mobile-rest/browse/plugin/src/main/java/com/atlassian/confluence/plugins/mobile/model/notification/IOS.java#89-96)
Since we don't need to customize the sound, we can just add a new "sound" variable and hardcode its value to "default", and then update the "hashCode" and "toString" methods.
The end result we want is to have "Aps{... sound=default, ...}" in the payload that we send to push notification service.
#CIM-1801