diff --git a/WordPress.xcworkspace/xcshareddata/swiftpm/Package.resolved b/WordPress.xcworkspace/xcshareddata/swiftpm/Package.resolved index 9b9551386cf0..420a9c1c1408 100644 --- a/WordPress.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/WordPress.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -1,5 +1,5 @@ { - "originHash" : "b048f2348f14b6f12b4a4b8588355abe499af3f8f4e91cacc054e98187a7746c", + "originHash" : "b637515cdb9c1c25894b401b59b20ad56c195cd52aa6bee2ada1b56cd753ece8", "pins" : [ { "identity" : "alamofire", @@ -392,7 +392,7 @@ "location" : "https://github.com/wordpress-mobile/WordPressKit-iOS", "state" : { "branch" : "wpios-edition", - "revision" : "ba542bae62a1d9b80b0baee44d610bfac55936ea" + "revision" : "554d3ef682af4cfd7888e33658789df48b67c408" } }, { diff --git a/WordPress/Classes/System/WordPressAppDelegate.swift b/WordPress/Classes/System/WordPressAppDelegate.swift index c4096ef49eb8..5c8cafca422b 100644 --- a/WordPress/Classes/System/WordPressAppDelegate.swift +++ b/WordPress/Classes/System/WordPressAppDelegate.swift @@ -135,6 +135,10 @@ class WordPressAppDelegate: UIResponder, UIApplicationDelegate { WKWebView.warmup() } + if let account = try? WPAccount.lookupDefaultWordPressComAccount(in: ContextManager.shared.mainContext) { + BlogSyncFacade().syncBlogs(for: account, success: { /* Do nothing */ }, failure: { _ in /* Do nothing */ }) + } + return true }