Skip to content

Commit

Permalink
fix: don't remove ETA Pref
Browse files Browse the repository at this point in the history
  • Loading branch information
david-allison committed Feb 13, 2024
1 parent 59d5b08 commit 5b01977
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -462,8 +462,10 @@ object PreferenceUpgradeService {
}

internal class RemoveReviewerETA : PreferenceUpgrade(15) {
override fun upgrade(preferences: SharedPreferences) =
preferences.edit { remove("showETA") }
override fun upgrade(preferences: SharedPreferences) {
// reverted: #15405
// preferences.edit { remove("showETA") }
}
}

/** default to true for existing users */
Expand Down

0 comments on commit 5b01977

Please sign in to comment.