From 0247ef43a954461a74aa4ee76e5fc58d69feae8a Mon Sep 17 00:00:00 2001 From: Wesley Ellis Date: Sat, 7 Mar 2026 16:53:35 -0500 Subject: [PATCH] fix timezone / unix time conversion bug --- watch-faces/complication/tomato_face.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watch-faces/complication/tomato_face.c b/watch-faces/complication/tomato_face.c index 5729bdd7..321e5dea 100644 --- a/watch-faces/complication/tomato_face.c +++ b/watch-faces/complication/tomato_face.c @@ -45,7 +45,7 @@ static void tomato_start(tomato_state_t *state) { state->mode = tomato_run; state->now_ts = movement_get_utc_timestamp(); state->target_ts = watch_utility_offset_timestamp(state->now_ts, 0, length, 0); - watch_date_time_t target_dt = watch_utility_date_time_from_unix_time(state->target_ts, movement_get_current_timezone_offset()); + watch_date_time_t target_dt = watch_utility_date_time_from_unix_time(state->target_ts, 0); movement_schedule_background_task_for_face(state->watch_face_index, target_dt); watch_set_indicator(WATCH_INDICATOR_BELL); }