|
|
@@ -81,7 +81,7 @@ public class ShowroomService {
|
|
|
showroom.setHeadBg(cp.getHeadBg());
|
|
|
showroom.setShowroomBg(cp.getShowroomBg());
|
|
|
showroom.setMaxCollection(cp.getMaxCollection());
|
|
|
- showroom.setNickname(asset.getOwnerName());
|
|
|
+ showroom.setNickname(asset.getOwner());
|
|
|
Showroom show = showroomRepo.save(showroom);
|
|
|
|
|
|
showCollections.forEach(showCollection -> {
|
|
|
@@ -119,7 +119,7 @@ public class ShowroomService {
|
|
|
.publish(false)
|
|
|
.userId(asset.getUserId())
|
|
|
.assetId(asset.getId())
|
|
|
- .nickname(asset.getOwnerName())
|
|
|
+ .nickname(asset.getOwner())
|
|
|
.build();
|
|
|
|
|
|
|