Is Combu.User.Exist...
 
Notifications
Clear all

Is Combu.User.Exists broken?

3 Posts
2 Users
0 Reactions
783 Views
(@dustin1138)
Posts: 21
Eminent Member
Topic starter
 

Hello,

If I use Combu.User.Exists with a null user name and an existing email, it will return with a correct "user exists" response.

But if I use Combu.User.Exists with an existing user name and null for the email, it will return with a "user does NOT exist" response which is wrong.

Or is there another way to check for a valid user name?

I'm using Combu 3.0.8.

Thanks!

 
Posted : 19/11/2017 5:19 am
(@skaredcreations)
Posts: 805
Prominent Member Admin
 

I've tested (in 3.0.9) both the following methods and the results were correct:

User.Exists ("username", string.Empty, (bool success, string error) => {
	Debug.Log (success);
});

User.Exists (string.Empty, "address@email.com", (bool success, string error) => {
	Debug.Log (success);
});

If you'll have issues yet then we could schedule a Skype chat for the next week and check it on your server (you can send your Skype ID to me by PM and I will add you at Monday).

FRANCESCO CROCETTI @ SKARED CREATIONS

 
Posted : 19/11/2017 11:58 am
(@dustin1138)
Posts: 21
Eminent Member
Topic starter
 

Sorry, the error was on my end. The username was not getting sent correctly. Apologies.

Thanks for the help!

 
Posted : 19/11/2017 9:50 pm
Share: