diff options
| -rw-r--r-- | update_attempter_android.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/update_attempter_android.cc b/update_attempter_android.cc index abb45459..a9033b76 100644 --- a/update_attempter_android.cc +++ b/update_attempter_android.cc @@ -797,6 +797,11 @@ void UpdateAttempterAndroid::UpdatePrefsAndReportUpdateMetricsOnReboot() { metrics_utils::LoadAndReportTimeToReboot( metrics_reporter_.get(), prefs_, clock_.get()); ClearMetricsPrefs(); + + // Also reset the update progress if the build version has changed. + if (!DeltaPerformer::ResetUpdateProgress(prefs_, false)) { + LOG(WARNING) << "Unable to reset the update progress."; + } } // Save the update start time. Reset the reboot count and attempt number if the |
