Skip to content

Commit

Permalink
[#59]Fix: 타이머가 끝난 후에 다음 유저 카드로 넘어가지 않는 현상 수정
Browse files Browse the repository at this point in the history
- 이전에 round 함수를 없앴는데, 없애면 오차가 발생하는 경우가 생기는 것으로 확인
- 왜 오차가 발생하고 그 오차가 간헐적으로 발생하는 지는 모르겠음.
  • Loading branch information
Minny27 committed Feb 1, 2024
1 parent 029ccb8 commit 6d88259
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ final class FallinguserCollectionViewCellModel: ViewModelType {
scheduler: MainScheduler.instance)
.take(Int(startTime * 100) + 1) // 시간의 총 개수
.map { value in
let time = (startTime * 100 - Double(value)) / 100
let time = round((startTime * 100 - Double(value))) / 100
currentTime = time
return time
}
Expand Down

0 comments on commit 6d88259

Please sign in to comment.