|
@@ -749,7 +749,7 @@ public class AiKuaishouCreateCreativeServiceImpl implements IAiKuaishouCreateCre
|
|
|
programJson.put("cover_image_tokens", coverImageTokens);
|
|
|
|
|
|
if (!Check.isNull(strategy.getSiteId())) {
|
|
|
- if (strategy.getSiteId() != -1) {
|
|
|
+ if (!strategy.getSiteId().equals("-1") ) {
|
|
|
programJson.put("site_id", strategy.getSiteId());
|
|
|
}
|
|
|
|
|
@@ -1455,7 +1455,7 @@ public class AiKuaishouCreateCreativeServiceImpl implements IAiKuaishouCreateCre
|
|
|
}
|
|
|
// 安卓下载中间页ID
|
|
|
if (!Check.isNull(strategy.getSiteId())) {
|
|
|
- if (strategy.getSiteId() != -1) {
|
|
|
+ if (!strategy.getSiteId().equals("-1") ) {
|
|
|
creativeParams.put("site_id", strategy.getSiteId());
|
|
|
}
|
|
|
}
|