Skip to content

Commit

Permalink
Add same delay to widget shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
amddg44 committed Mar 20, 2024
1 parent 35a51bb commit b181e83
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion DuckDuckGo/AppDelegate+AppDeepLinks.swift
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ extension AppDelegate {
#endif

case .openPasswords:
mainViewController.launchAutofillLogins(openSearch: true)
DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 0.5) { [weak self] in
mainViewController.launchAutofillLogins(openSearch: true)
}

default:
guard app.applicationState == .active,
Expand Down

0 comments on commit b181e83

Please sign in to comment.