Обновить src/main/java/im/rosetta/service/dispatch/push/dispatchers/VoIPApns.java
All checks were successful
Build rosetta-wss / build (push) Successful in 2m14s
All checks were successful
Build rosetta-wss / build (push) Successful in 2m14s
This commit is contained in:
@@ -59,11 +59,13 @@ public class VoIPApns extends Pusher {
|
||||
"aps": { "content-available": 1 },
|
||||
"type": "CALL",
|
||||
"callId": "%s",
|
||||
"from": "%s"
|
||||
"from": "%s",
|
||||
"joinToken": "%s"
|
||||
}
|
||||
""".formatted(
|
||||
escape(data.getOrDefault("callId", "")),
|
||||
escape(data.getOrDefault("dialog", ""))
|
||||
escape(data.getOrDefault("dialog", "")),
|
||||
escape(data.getOrDefault("joinToken", ""))
|
||||
);
|
||||
|
||||
SimpleApnsPushNotification push = new SimpleApnsPushNotification(
|
||||
|
||||
Reference in New Issue
Block a user