Skip to content

Commit

Permalink
updated copy of identity failure message when the current appUserID i…
Browse files Browse the repository at this point in the history
…s nil
  • Loading branch information
aboedo committed Feb 19, 2021
1 parent 5834a82 commit c6d18fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions PurchasesCoreSwift/Logging/Strings/IdentityStrings.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import Foundation
@objc(RCIdentityStrings) public class IdentityStrings: NSObject {
@objc public var changing_app_user_id: String { "Changing App User ID: %@ -> %@" }
@objc public var creating_alias_failed_null_currentappuserid: String { "Couldn't create an alias because the " +
"currentAppUserID is null. This might happen if the cache in UserDefaults is unintentionally cleared." }
@objc public var logging_in_with_initial_appuserid_nil: String { "The value of appUserID before calling logIn " +
"was nil. This might happen if the cache in UserDefaults is unintentionally cleared." }
"currentAppUserID is nil. This might happen if the cache in UserDefaults is unintentionally cleared." }
@objc public var logging_in_with_initial_appuserid_nil: String { "Couldn't log in because the current appUserID " +
"is nil. This might happen if the cache in UserDefaults is unintentionally cleared." }
@objc public var logging_in_with_nil_appuserid: String { "The appUserID passed to logIn is nil or empty. " +
"Can't log in. This method should only be called with non-nil and non-empty values." }
@objc public var logging_in_with_same_appuserid: String { "The appUserID passed to logIn is the same as the one " +
Expand Down

0 comments on commit c6d18fa

Please sign in to comment.