Hey there!
Hitting a weird warning sometimes and I'm not really sure what is going on with it? It seems to be kind of inconsistent in when it happens, so I'm having trouble nailing it down.
In the trello.cs class I'm getting this message back when I try to send feedback. I checked the description value that is passed into the add card function and it seems to be fine.
invalid value for desc UnityEngine.Debug:Log(Object) EasyFeedback.ExternalAPI.Trello.<AddCard>c__Iterator0:MoveNext() (at Assets/Easy Feedback/Scripts/ExternalAPI/Trello/Trello.cs:103) UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr)
I can get it to work if I change a few things around, on line 103 in trello.cs:
#if UNITY_EDITOR Debug.Log(LastRequest.downloadHandler.text); if(LastRequest.downloadHandler.text == "invalid value for desc") { UploadError = true; ErrorMessage = "invalid value for desc"; } #endif
Before it was just logging it out, but if I treat this as an error, it will show an alert, and fail, but every time after when I try to submit it works!
So it seems like classifying it as an error clears some weirdness out and allows it to work on the next go.
Any idea on why this would happen? I can get more info if needed. :)