diff --git a/Shared/Data/CacheCleaner.swift b/Shared/Data/CacheCleaner.swift index 949a7eb2e..9f36787cd 100644 --- a/Shared/Data/CacheCleaner.swift +++ b/Shared/Data/CacheCleaner.swift @@ -21,7 +21,7 @@ struct CacheCleaner { } // If the image disk cache hasn't been flushed for 3 days and the network is available, delete it - if flushDate.addingTimeInterval(3600*24*3) < Date() { + if flushDate.addingTimeInterval(3600 * 24 * 3) < Date() { if let reachability = try? Reachability(hostname: "apple.com") { if reachability.connection != .unavailable {