Operator spacing

This commit is contained in:
Nate Weaver 2020-02-02 18:00:58 -06:00
parent ba6315fa07
commit ede4813a1a

View File

@ -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 {