REQ-3284: 推送

This commit is contained in:
yanglin 2024-11-29 11:27:56 +08:00
parent 7f9e171739
commit 549d882c55

View File

@ -17,7 +17,9 @@ abstract class AndroidPushPayloadBuilder<T extends Intent<?>>
T intent = createIntent();
BizAssertions.assertNotNull(intent, "intent can't be null");
if (content.hasAndroidPushUrl())
Intent.setRouter(intent, IntentValue.create(content.getAndroidPushUrl()));
Intent.setRouter(intent, IntentValue
.create(content.getAndroidPushUrl())
.urlEncode());
return intent;
}