Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ final class InterruptionResolverFactory: InterruptionResolverFactoryProtocol {
// pending veryfication
let loginError = LoginApiError<T>(error: error, interruption: .pendingVerification(regToken: regToken))
completion(.failure(loginError))
case .conflitingAccounts:
case .conflictingAccounts:
// conflicting accounts
resolver = LinkAccountsResolver(originalError: error, regToken: regToken, businessDelegate: businessDelegate, dataResponse: dataResponse, completion: completion)
resolver?.start?()
Expand Down
2 changes: 1 addition & 1 deletion GigyaSwift/Models/Interruption/InterruptionEnum.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import Foundation
public enum Interruption: Int, CaseIterable {
case pendingRegistration = 206001
case pendingVerification = 206002
case conflitingAccounts = 409003
case conflictingAccounts = 409003
case pendingTwoFactorRegistration = 403102
case pendingTwoFactorVerification = 403101
case accountLinked = 200009
Expand Down