From 82ee6132e1240f1ffcffa67a12f4aac34b999555 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacek=20=C5=81yp?= Date: Fri, 20 Dec 2024 10:40:26 +0100 Subject: [PATCH] Fix naming --- DuckDuckGo/AppLifecycle/AppStateTransitions.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DuckDuckGo/AppLifecycle/AppStateTransitions.swift b/DuckDuckGo/AppLifecycle/AppStateTransitions.swift index 9261925581..a6e5a8160c 100644 --- a/DuckDuckGo/AppLifecycle/AppStateTransitions.swift +++ b/DuckDuckGo/AppLifecycle/AppStateTransitions.swift @@ -111,7 +111,7 @@ extension DoubleBackground { case .suspending(let application): return Inactive(application: application) case .backgrounding(let application): - return DoubleBackground(previousDidEnterBackgroundTimestamp: firstTimeBackgroundTimestamp, counter: counter) + return DoubleBackground(previousDidEnterBackgroundTimestamp: currentDidEnterBackgroundTimestamp, counter: counter) case .launching, .openURL: return self }