Skip to content

Commit

Permalink
Merge pull request #53 from sanghyeok-kim/52-timer-time-edit-confirm-…
Browse files Browse the repository at this point in the history
…button-enable-bug

타이머 편집시,  시간을 변경하지 않아도 '확인'버튼이 활성화되는 문제 해결
  • Loading branch information
sanghyeok-kim authored Aug 11, 2023
2 parents 068bb67 + 737a174 commit a367617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Multimer/Multimer/Domain/Model/Timer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ extension Timer: Equatable {
static func == (lhs: Timer, rhs: Timer) -> Bool {
return (lhs.name == rhs.name)
&& (lhs.tag == rhs.tag)
&& (lhs.time == rhs.time)
&& (lhs.time.totalSeconds == rhs.time.totalSeconds)
&& (lhs.ringtone == rhs.ringtone)
}
}
Expand Down

0 comments on commit a367617

Please sign in to comment.