@@ -861,7 +861,7 @@ public static void ConnectGoogleAccount(string idToken, Action<LootLockerRespons
861
861
862
862
string data = LootLockerJson . SerializeObject ( new LootLockerConnectGoogleProviderToAccountRequest { id_token = idToken } ) ;
863
863
864
- LootLockerServerRequest . CallAPI ( endpoint , LootLockerEndPoints . disconnectAccount . httpMethod , data , ( response ) => { LootLockerResponse . Deserialize ( onComplete , response ) ; } ) ;
864
+ LootLockerServerRequest . CallAPI ( endpoint , LootLockerEndPoints . connectProviderToAccount . httpMethod , data , ( response ) => { LootLockerResponse . Deserialize ( onComplete , response ) ; } ) ;
865
865
}
866
866
867
867
/// <summary>
@@ -882,7 +882,7 @@ public static void ConnectGoogleAccount(string idToken, GoogleAccountProviderPla
882
882
883
883
string data = LootLockerJson . SerializeObject ( new LootLockerConnectGoogleProviderToAccountWithPlatformRequest ( ) { id_token = idToken , platform = platform } ) ;
884
884
885
- LootLockerServerRequest . CallAPI ( endpoint , LootLockerEndPoints . disconnectAccount . httpMethod , data , ( response ) => { LootLockerResponse . Deserialize ( onComplete , response ) ; } ) ;
885
+ LootLockerServerRequest . CallAPI ( endpoint , LootLockerEndPoints . connectProviderToAccount . httpMethod , data , ( response ) => { LootLockerResponse . Deserialize ( onComplete , response ) ; } ) ;
886
886
}
887
887
888
888
/// <summary>
@@ -902,7 +902,7 @@ public static void ConnectAppleAccountByRestSignIn(string authorizationCode, Act
902
902
903
903
string data = LootLockerJson . SerializeObject ( new LootLockerConnectAppleRestProviderToAccountRequest ( ) { authorization_code = authorizationCode } ) ;
904
904
905
- LootLockerServerRequest . CallAPI ( endpoint , LootLockerEndPoints . disconnectAccount . httpMethod , data , ( response ) => { LootLockerResponse . Deserialize ( onComplete , response ) ; } ) ;
905
+ LootLockerServerRequest . CallAPI ( endpoint , LootLockerEndPoints . connectProviderToAccount . httpMethod , data , ( response ) => { LootLockerResponse . Deserialize ( onComplete , response ) ; } ) ;
906
906
}
907
907
908
908
#endregion
0 commit comments