|
@@ -23,7 +23,10 @@ public interface ContentPlatformPlanService {
|
|
|
if (StringUtils.hasText(video.getCustomCover())) {
|
|
|
return video.getCustomCover();
|
|
|
}
|
|
|
- return video.getCover().substring(0, video.getCover().indexOf("?"));
|
|
|
+ if (video.getCover().contains("?")) {
|
|
|
+ return video.getCover().substring(0, video.getCover().indexOf("?"));
|
|
|
+ }
|
|
|
+ return video.getCover();
|
|
|
}
|
|
|
|
|
|
Page<GzhPlanItemVO> gzhPlanList(GzhPlanListParam param);
|