From 737a174cb2fdefd30e37bc911f7ab1dc00088e07 Mon Sep 17 00:00:00 2001 From: sanghyeok-kim Date: Fri, 11 Aug 2023 14:19:11 +0900 Subject: [PATCH] =?UTF-8?q?#52=20fix:=20=ED=83=80=EC=9D=B4=EB=A8=B8=20?= =?UTF-8?q?=ED=8E=B8=EC=A7=91=EC=8B=9C,=20=EC=8B=9C=EA=B0=84=EC=9D=84=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=ED=95=98=EC=A7=80=20=EC=95=8A=EC=95=84?= =?UTF-8?q?=EB=8F=84=20'=ED=99=95=EC=9D=B8'=EB=B2=84=ED=8A=BC=EC=9D=B4=20?= =?UTF-8?q?=ED=99=9C=EC=84=B1=ED=99=94=EB=90=98=EB=8A=94=20=EB=AC=B8?= =?UTF-8?q?=EC=A0=9C=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Multimer/Multimer/Domain/Model/Timer.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Multimer/Multimer/Domain/Model/Timer.swift b/Multimer/Multimer/Domain/Model/Timer.swift index 65482f6..5ee3a5c 100644 --- a/Multimer/Multimer/Domain/Model/Timer.swift +++ b/Multimer/Multimer/Domain/Model/Timer.swift @@ -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) } }