File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
data/src/main/java/com/threegap/bitnagil/data
writeroutine/repositoryImpl Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ fun RoutineDto.toDomain(): Routine =
3838 Routine (
3939 id = this .routineId,
4040 name = this .routineName,
41- repeatDays = this .repeatDay.map { it } ,
41+ repeatDays = this .repeatDay,
4242 executionTime = this .executionTime,
4343 routineDate = this .routineDate,
4444 isCompleted = this .routineCompleteYn,
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class WriteRoutineRepositoryImpl @Inject constructor(
2828 ): Result <Unit > {
2929 val request = RegisterRoutineRequest (
3030 routineName = name,
31- repeatDay = repeatDay.map { it } ,
31+ repeatDay = repeatDay,
3232 executionTime = startTime.toString(),
3333 routineStartDate = startDate.toString(),
3434 routineEndDate = endDate.toString(),
@@ -56,7 +56,7 @@ class WriteRoutineRepositoryImpl @Inject constructor(
5656 routineId = routineId,
5757 updateApplyDate = routineUpdateType,
5858 routineName = name,
59- repeatDay = repeatDay.map { it } ,
59+ repeatDay = repeatDay,
6060 executionTime = startTime.toString(),
6161 routineStartDate = startDate.toString(),
6262 routineEndDate = endDate.toString(),
You can’t perform that action at this time.
0 commit comments