Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Assets/NCMBLeaderboardWebGL/Scripts/NCMBRestController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,11 @@ public IEnumerator Call(RequestType method, string path, NCMBDataStoreParamSet n

request.downloadHandler = new DownloadHandlerBuffer();

#if UNITY_2017_2_OR_NEWER
yield return request.SendWebRequest();
#else
yield return request.Send();
#endif

#if UNITY_2017_1_OR_NEWER
if (request.isNetworkError)
Expand Down Expand Up @@ -220,4 +224,4 @@ public DateTime createDateTime
}
}
}
}
}