From 6aa740d3b272e69b155c56c7cd1a67da12e0676b Mon Sep 17 00:00:00 2001 From: Adam Shiervani Date: Tue, 18 Nov 2025 15:04:05 +0100 Subject: [PATCH] chore: remove early return in doUpdate when custom update is set --- internal/ota/ota.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/ota/ota.go b/internal/ota/ota.go index 639e5f91..5486177a 100644 --- a/internal/ota/ota.go +++ b/internal/ota/ota.go @@ -231,7 +231,6 @@ func (s *State) doUpdate(ctx context.Context, params UpdateParams) error { if _, err := s.setAutoUpdate(false); err != nil { scopedLogger.Warn().Err(err).Msg("Failed to disable auto-update") } - return nil } scopedLogger.Info().Msg("System Rebooting due to OTA update")