|
@@ -293,7 +293,14 @@ public class RankService {
|
|
|
if (CollectionUtils.isNotEmpty(quickFlowPoolVideos)) {
|
|
|
return quickFlowPoolVideos;
|
|
|
} else {
|
|
|
- return extractAndSort(param, FlowPoolConstants.PUSH_FORM);
|
|
|
+
|
|
|
+
|
|
|
+ List<Video> flowPoolVideos = extractAndSort(param, FlowPoolConstants.PUSH_FORM);
|
|
|
+ if (CollectionUtils.isNotEmpty(quickFlowPoolVideos)) {
|
|
|
+ return flowPoolVideos;
|
|
|
+ } else {
|
|
|
+ return extractAndSort(param, FlowPoolConstants.SUPPLY_PUSH_FORM);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|