|
@@ -324,7 +324,8 @@ public class ContentPlatformPlanServiceImpl implements ContentPlatformPlanServic
|
|
|
String existsCover = dataList.get(0).getCoverUrl();
|
|
|
String coverSuffix = existsCover.substring(existsCover.indexOf("?"));
|
|
|
cgiReplyBucketDataMapperExt.updateBucketDataTitleCoverByGhId(ghId, video.getVideoId(),
|
|
|
- video.getCustomTitle(), video.getCustomCover() + coverSuffix);
|
|
|
+ StringUtils.hasText(video.getCustomTitle()) ? video.getCustomTitle() : video.getTitle(),
|
|
|
+ StringUtils.hasText(video.getCustomCover()) ? video.getCustomCover() : video.getCover() + coverSuffix);
|
|
|
}
|
|
|
}
|
|
|
|