Skip to content

Commit 2e308f9

Browse files
committed
fix: rename urlExclusionsList to urlExclusionList.
Signed-off-by: ryan-alectrona <[email protected]>
1 parent c8092e0 commit 2e308f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: migrator/AppContext.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ struct AppContext {
108108
static var duplicateFilesHandlingPolice: DuplicateFilesHandlingPolicy {
109109
return DuplicateFilesHandlingPolicy(rawValue: UserDefaults.standard.string(forKey: Self.duplicateFilesHandlingPolicyKey) ?? "overwrite") ?? .overwrite
110110
}
111-
static var urlExclusionsList: [URL?] {
111+
static var urlExclusionList: [URL?] {
112112
let managedExcludedPaths = UserDefaults.standard.array(forKey: Self.excludedPathsListKey) as? [String] ?? []
113113
let managedExcludedURLs = managedExcludedPaths.compactMap { URL(string: $0) }
114114
return managedExcludedURLs + defaultUrlExclusionList

0 commit comments

Comments
 (0)