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