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!
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
Sorry, the error was on my end. The username was not getting sent correctly. Apologies.
Thanks for the help!