diff --git a/DuckDuckGo/Configuration/ConfigurationStore.swift b/DuckDuckGo/Configuration/ConfigurationStore.swift index a47fc12739..cb1890d020 100644 --- a/DuckDuckGo/Configuration/ConfigurationStore.swift +++ b/DuckDuckGo/Configuration/ConfigurationStore.swift @@ -96,7 +96,12 @@ final class ConfigurationStore: ConfigurationStoring { } catch { guard !NSApp.isRunningUnitTests else { return nil } - Pixel.fire(.debug(event: .trackerDataCouldNotBeLoaded, error: error)) + let nserror = error as NSError + + if nserror.domain != NSCocoaErrorDomain || nserror.code != NSFileReadNoSuchFileError { + Pixel.fire(.debug(event: .trackerDataCouldNotBeLoaded, error: error)) + } + return nil } }