From 26d511eab69c1be66ad45d92ab0796e37f3f4080 Mon Sep 17 00:00:00 2001 From: Juan David Nicholls Cardona Date: Thu, 10 Jan 2019 12:33:26 -0500 Subject: [PATCH] Fix critical issue with a recursive function --- src/Proyecto26.RestClient/Properties/AssemblyInfo.cs | 2 +- src/Proyecto26.RestClient/Proyecto26.RestClient.nuspec | 2 +- src/Proyecto26.RestClient/RestClient.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Proyecto26.RestClient/Properties/AssemblyInfo.cs b/src/Proyecto26.RestClient/Properties/AssemblyInfo.cs index 450be14..a712ae4 100644 --- a/src/Proyecto26.RestClient/Properties/AssemblyInfo.cs +++ b/src/Proyecto26.RestClient/Properties/AssemblyInfo.cs @@ -17,7 +17,7 @@ // The form "{Major}.{Minor}.*" will automatically update the build and revision, // and "{Major}.{Minor}.{Build}.*" will update just the revision. -[assembly: AssemblyVersion ("2.4.0")] +[assembly: AssemblyVersion ("2.4.1")] // The following attributes are used to specify the signing key for the assembly, // if desired. See the Mono documentation for more information about signing. diff --git a/src/Proyecto26.RestClient/Proyecto26.RestClient.nuspec b/src/Proyecto26.RestClient/Proyecto26.RestClient.nuspec index 15dc2ac..8886cb5 100644 --- a/src/Proyecto26.RestClient/Proyecto26.RestClient.nuspec +++ b/src/Proyecto26.RestClient/Proyecto26.RestClient.nuspec @@ -2,7 +2,7 @@ Proyecto26.RestClient - 2.4.0 + 2.4.1 RestClient for Unity Juan David Nicholls Cardona jdnichollsc diff --git a/src/Proyecto26.RestClient/RestClient.cs b/src/Proyecto26.RestClient/RestClient.cs index 238ec4b..d2df4a4 100644 --- a/src/Proyecto26.RestClient/RestClient.cs +++ b/src/Proyecto26.RestClient/RestClient.cs @@ -33,7 +33,7 @@ public static Dictionary DefaultRequestHeaders /// A callback function that is executed when the request is finished. public static void Request(RequestHelper options, Action callback) { - Request(options, callback); + StaticCoroutine.StartCoroutine(HttpBase.DefaultUnityWebRequest(options, callback)); } ///