Skip to content

Commit

Permalink
scope: combo biz scene fix
Browse files Browse the repository at this point in the history
  • Loading branch information
liuzhuo07 committed Nov 19, 2024
1 parent a32648f commit e560208
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import java.util.Set;
import java.util.stream.Collectors;

import com.kuaishou.business.core.identity.Match;
import com.kuaishou.business.extension.dimension.MatchStatus;

import lombok.AllArgsConstructor;
Expand All @@ -26,4 +27,9 @@ public MatchStatus match(Collection<BizSceneItem> request) {
}
return MatchStatus.UNKNOWN;
}

@Override
public Match match(Object request, Long resourceId) {
return match((Collection<BizSceneItem>) request);
}
}

0 comments on commit e560208

Please sign in to comment.