|
|
@@ -508,7 +508,10 @@ public class RecommendService {
|
|
|
UserShareReturnProfile userProfile = featureService.getUserProfile(param.getUid(), param.getMid());
|
|
|
Map<String, Map<String, String>> behaviorVideos = featureService.getBehaviorVideos(vid, userProfile);
|
|
|
|
|
|
- Map<String, String> userSocialRecallInfo = featureService.getUserSocialRecallInfo(param.getMid());
|
|
|
+ Map<String, String> userSocialRecallInfo = new HashMap<>();
|
|
|
+ if (CollectionUtils.isNotEmpty(param.getAbExpCodes()) && param.getAbExpCodes().contains("566")) {
|
|
|
+ userSocialRecallInfo = featureService.getUserSocialRecallInfo(param.getMid());
|
|
|
+ }
|
|
|
|
|
|
Map<String, String> headVideoInfo;
|
|
|
if (null != behaviorVideos && behaviorVideos.containsKey(vid)) {
|