We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 076bcd6 commit 176f54aCopy full SHA for 176f54a
WooCommerce/Classes/Authentication/AuthenticationManager.swift
@@ -151,8 +151,9 @@ extension AuthenticationManager: WordPressAuthenticatorDelegate {
151
fatalError("Self Hosted sites are not supported. Please review the Authenticator settings!")
152
}
153
154
- let credentials = Credentials(username: username, authToken: authToken)
155
- StoresManager.shared.authenticate(credentials: credentials, onCompletion: onCompletion)
+ StoresManager.shared
+ .authenticate(credentials: .init(username: username, authToken: authToken))
156
+ .synchronizeEntities(onCompletion: onCompletion)
157
158
159
/// Tracks a given Analytics Event.
0 commit comments