From 3e65260f91506bd6baf403cd60cd6963352ca6d3 Mon Sep 17 00:00:00 2001 From: ddongseop Date: Tue, 27 Feb 2024 21:51:46 +0900 Subject: [PATCH] =?UTF-8?q?[FIX]=20=ED=8A=9C=ED=86=A0=EB=A6=AC=EC=96=BC=20?= =?UTF-8?q?=EC=83=81=ED=99=A9=EC=97=90=EC=84=9C=20=EC=83=81=EB=8C=80?= =?UTF-8?q?=EB=B0=A9=20=EC=A0=95=EB=B3=B4=EB=8F=84=20=EB=9C=A8=EA=B2=8C=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=20#130?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/qna/dto/response/TodayQnAResponseDto.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/umbba-api/src/main/java/sopt/org/umbba/api/controller/qna/dto/response/TodayQnAResponseDto.java b/umbba-api/src/main/java/sopt/org/umbba/api/controller/qna/dto/response/TodayQnAResponseDto.java index d85beb0a..9ff27324 100644 --- a/umbba-api/src/main/java/sopt/org/umbba/api/controller/qna/dto/response/TodayQnAResponseDto.java +++ b/umbba-api/src/main/java/sopt/org/umbba/api/controller/qna/dto/response/TodayQnAResponseDto.java @@ -75,13 +75,13 @@ public static TodayQnAResponseDto of(User myUser, User opponentUser, int count, .index(count) .section(todayQuestion.getSection().getValue()) .topic(todayQuestion.getTopic()) - .opponentQuestion(null) + .opponentQuestion(opponentQuestion) .myQuestion(myQuestion) - .opponentAnswer(null) + .opponentAnswer(opponentAnswer) .myAnswer(myAnswer) - .isOpponentAnswer(null) + .isOpponentAnswer(isOpponentAnswer) .isMyAnswer(isMyAnswer) - .opponentUsername(null) + .opponentUsername("상대방") .myUsername(myUser.getUsername()) .build(); }