Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
brindy committed Jan 11, 2024
1 parent 50e8a57 commit 7ec41a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/WebCacheManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public class WebCacheManager {
}

@available(iOS 17, *)
func containerBasedClearing(cookeStorage: CookieStorage = CookieStorage(),
func containerBasedClearing(cookieStorage: CookieStorage = CookieStorage(),
logins: PreserveLogins,
storeIdManager: DataStoreIdManager,
completion: @escaping () -> Void) {
Expand All @@ -184,7 +184,7 @@ public class WebCacheManager {
// If cookies is empty it's likely that the webview was not used since the last fire button so
// don't overwrite previously saved cookies
if let cookies, !cookies.isEmpty {
cookeStorage.cookies = cookies
cookieStorage.cookies = cookies
}

completion()
Expand Down

0 comments on commit 7ec41a5

Please sign in to comment.