|
|
@@ -199,9 +199,6 @@ public class ThirdPartyPushMessageStrategyV1 implements ReplyStrategyService {
|
|
|
String pageUrl = cgiReplyBucketData.getMiniPagePath();
|
|
|
if (Objects.nonNull(gzhPlanVideo)) {
|
|
|
try {
|
|
|
- if (Objects.nonNull(gzhPlanVideo.getCustomTitleId()) && !pageUrl.contains("shareTitleId")) {
|
|
|
- pageUrl += URLEncoder.encode("&shareTitleId=" + gzhPlanVideo.getCustomTitleId(), "UTF-8");
|
|
|
- }
|
|
|
if (!pageUrl.contains("shareTitle")) {
|
|
|
if (StringUtils.isNotBlank(gzhPlanVideo.getCustomTitle())) {
|
|
|
pageUrl += URLEncoder.encode("&shareTitle=" + gzhPlanVideo.getCustomTitle(), "UTF-8");
|
|
|
@@ -209,6 +206,9 @@ public class ThirdPartyPushMessageStrategyV1 implements ReplyStrategyService {
|
|
|
pageUrl += URLEncoder.encode("&shareTitle=" + gzhPlanVideo.getTitle(), "UTF-8");
|
|
|
}
|
|
|
}
|
|
|
+ if (Objects.nonNull(gzhPlanVideo.getCustomTitleId()) && !pageUrl.contains("shareTitleId")) {
|
|
|
+ pageUrl += URLEncoder.encode("&shareTitleId=" + gzhPlanVideo.getCustomTitleId(), "UTF-8");
|
|
|
+ }
|
|
|
if (Objects.nonNull(gzhPlanVideo.getCustomCoverId()) && !pageUrl.contains("shareImageId")) {
|
|
|
pageUrl += URLEncoder.encode("&shareImageId=" + gzhPlanVideo.getCustomCoverId(), "UTF-8");
|
|
|
}
|