|
@@ -31,11 +31,11 @@ public class FeatureRemoteService {
|
|
|
private FeatureClient client;
|
|
|
|
|
|
|
|
|
- public UserFeature getUserFeature(String uid) {
|
|
|
- if (StringUtils.isBlank(uid)) {
|
|
|
+ public UserFeature getUserFeature(String mid) {
|
|
|
+ if (StringUtils.isBlank(mid)) {
|
|
|
return null;
|
|
|
}
|
|
|
- UserFeatureProto proto = client.getUserFeature(uid);
|
|
|
+ UserFeatureProto proto = client.getUserFeature(mid);
|
|
|
return convert(proto);
|
|
|
}
|
|
|
|