@@ -191,6 +191,7 @@ public class AuctionOrderService {
.avatar(SecurityUtils.getAuthenticatedUser().getAvatar())
.name(auction.getName())
.purchased(false)
+ .auctionType(auction.getAuctionType())
.build();
AuctionRecord record = auctionRecordRepo.save(auctionRecord);
@@ -166,6 +166,7 @@ public class AuctionRecordService {
.type(AuctionRecordType.DEPOSIT)
.payDeposit(false)
.build());
}