|
@@ -59,11 +59,7 @@ public class RankStrategyFlowThompsonModel extends RankService {
|
|
|
Optional<RecallResult.RecallData> data = param.getRecallResult().getData().stream()
|
|
|
.filter(d -> d.getPushFrom().equals(pushFrom))
|
|
|
.findFirst();
|
|
|
-// List<Video> videoList = data.get().getVideos();
|
|
|
- List<Video> videoList = new ArrayList<>();
|
|
|
- Video v1 = new Video();
|
|
|
- v1.setVideoId(10000L);
|
|
|
- videoList.add(v1);
|
|
|
+ List<Video> videoList = data.get().getVideos();
|
|
|
if (videoList == null) {
|
|
|
return Collections.emptyList();
|
|
|
}
|