Skip to content
This repository has been archived by the owner on Jul 21, 2020. It is now read-only.

Error in if (jsonReader.Value.ToString() == "authkey") { jsonReader.Read(); _authKey = jsonReader.Value.ToString(); Debug.Log("Authkey is [" + _authKey + "]"); } #5

Open
djarcas opened this issue Feb 4, 2019 · 0 comments

Comments

@djarcas
Copy link

djarcas commented Feb 4, 2019

if (jsonReader.Value.ToString() == "authkey")
                    {
                        _authKey = jsonReader.Value.ToString();
                    }

should be

                    {
                        jsonReader.Read();
                        _authKey = jsonReader.Value.ToString();
                    }

Otherwise the authkey is always the string "authkey"

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Development

No branches or pull requests

1 participant