From 18b30b6f2f925cfddfd69cc56ccfe6905c5187d0 Mon Sep 17 00:00:00 2001 From: SeungHyun Hong Date: Tue, 12 Dec 2023 19:38:41 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20Timezone=EC=84=A4=EC=A0=95=ED=95=B4?= =?UTF-8?q?=EC=84=9C=20=EC=98=AC=EB=B0=94=EB=A5=B8=20=EC=8B=9C=EA=B0=84?= =?UTF-8?q?=EB=8C=80=EB=A1=9C=20=EB=93=A4=EC=96=B4=EC=98=A4=EB=8F=84?= =?UTF-8?q?=EB=A1=9D=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Features/Record/Sources/Data/DTO/RecordResponseDTO.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/iOS/Projects/Features/Record/Sources/Data/DTO/RecordResponseDTO.swift b/iOS/Projects/Features/Record/Sources/Data/DTO/RecordResponseDTO.swift index b64351b3..0c618f8e 100644 --- a/iOS/Projects/Features/Record/Sources/Data/DTO/RecordResponseDTO.swift +++ b/iOS/Projects/Features/Record/Sources/Data/DTO/RecordResponseDTO.swift @@ -49,6 +49,7 @@ extension Record { let startDate = endDate - Double(workoutTime) let formatter = DateFormatter() formatter.dateFormat = "HH:mm:ss" + formatter.timeZone = .init(abbreviation: "UTC") // 날짜를 문자열로 변환 let startDateString = formatter.string(from: startDate)