From 6408b8169f1253e14299c137a9dea753d5ad0c88 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Thu, 26 Oct 2023 19:08:15 -0400 Subject: [PATCH] Bugfix FXIOS-7632 [v119.1] Comment out possible cause of crash for testing (#17029) (#17031) Co-authored-by: roux g. buciu (cherry picked from commit e348dee9c6256314fafdae080e5e615bb2216913) Co-authored-by: roux g. buciu <11182210+adudenamedruby@users.noreply.github.com> --- Client/Application/AppDelegate.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Client/Application/AppDelegate.swift b/Client/Application/AppDelegate.swift index 31a88b14473a..23855f7b5313 100644 --- a/Client/Application/AppDelegate.swift +++ b/Client/Application/AppDelegate.swift @@ -187,7 +187,8 @@ class AppDelegate: UIResponder, UIApplicationDelegate { // Cleanup can be a heavy operation, take it out of the startup path. Instead check after a few seconds. DispatchQueue.main.asyncAfter(deadline: .now() + 5.0) { [weak self] in - self?.profile.cleanupHistoryIfNeeded() + // TODO: testing to see if this fixes https://mozilla-hub.atlassian.net/browse/FXIOS-7632 + // self?.profile.cleanupHistoryIfNeeded() self?.ratingPromptManager.updateData() }