@@ -477,7 +477,7 @@ public static void EndSession(string deviceId, Action<LootLockerSessionResponse>
477
477
/// </summary>
478
478
public static void WhiteLabelLogin ( string email , string password , Action < LootLockerWhiteLabelLoginResponse > onComplete )
479
479
{
480
- if ( ! CheckInitialized ( ) )
480
+ if ( ! CheckInitialized ( true ) )
481
481
{
482
482
onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerWhiteLabelLoginResponse > ( ) ) ;
483
483
return ;
@@ -494,7 +494,7 @@ public static void WhiteLabelLogin(string email, string password, Action<LootLoc
494
494
495
495
public static void WhiteLabelLogin ( string email , string password , bool remember , Action < LootLockerWhiteLabelLoginResponse > onComplete )
496
496
{
497
- if ( ! CheckInitialized ( ) )
497
+ if ( ! CheckInitialized ( true ) )
498
498
{
499
499
onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerWhiteLabelLoginResponse > ( ) ) ;
500
500
return ;
@@ -523,7 +523,7 @@ public static void WhiteLabelLogin(string email, string password, bool remember,
523
523
/// </summary>
524
524
public static void WhiteLabelSignUp ( string email , string password , Action < LootLockerWhiteLabelSignupResponse > onComplete )
525
525
{
526
- if ( ! CheckInitialized ( ) )
526
+ if ( ! CheckInitialized ( true ) )
527
527
{
528
528
onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerWhiteLabelSignupResponse > ( ) ) ;
529
529
return ;
@@ -545,7 +545,7 @@ public static void WhiteLabelSignUp(string email, string password, Action<LootLo
545
545
/// </summary>
546
546
public static void WhiteLabelRequestPassword ( string email , Action < LootLockerResponse > onComplete )
547
547
{
548
- if ( ! CheckInitialized ( ) )
548
+ if ( ! CheckInitialized ( true ) )
549
549
{
550
550
onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerResponse > ( ) ) ;
551
551
return ;
@@ -562,7 +562,7 @@ public static void WhiteLabelRequestPassword(string email, Action<LootLockerResp
562
562
/// </summary>
563
563
public static void WhiteLabelRequestVerification ( int userID , Action < LootLockerResponse > onComplete )
564
564
{
565
- if ( ! CheckInitialized ( ) )
565
+ if ( ! CheckInitialized ( true ) )
566
566
{
567
567
onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerResponse > ( ) ) ;
568
568
return ;
0 commit comments