misc: 유니크 경매 취소 시에 경매 경매가 취소되었다고 표시되는 문제 수정

This commit was merged in pull request #240.
This commit is contained in:
포스트모더니즘
2023-10-29 08:37:36 +09:00
parent 96c5f987d6
commit 428ec0d0ed
+1 -1
View File
@@ -267,7 +267,7 @@ abstract class Auction
if ($isRollback) {
$highestBid = $this->getHighestBid();
if ($highestBid !== null) {
$this->refundBid($highestBid, "{$this->info->id}{$this->info->detail->title} 경매가 취소되었습니다.");
$this->refundBid($highestBid, "{$this->info->id}{$this->info->detail->title}가 취소되었습니다.");
}
$this->rollbackAuction();
}