Skip to content

Commit

Permalink
Fix critical issue with a recursive function
Browse files Browse the repository at this point in the history
  • Loading branch information
jdnichollsc committed Jan 10, 2019
1 parent 1b6b597 commit 26d511e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Proyecto26.RestClient/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/Proyecto26.RestClient/Proyecto26.RestClient.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Proyecto26.RestClient</id>
<version>2.4.0</version>
<version>2.4.1</version>
<title>RestClient for Unity</title>
<authors>Juan David Nicholls Cardona</authors>
<owners>jdnichollsc</owners>
Expand Down
2 changes: 1 addition & 1 deletion src/Proyecto26.RestClient/RestClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public static Dictionary<string, string> DefaultRequestHeaders
/// <param name="callback">A callback function that is executed when the request is finished.</param>
public static void Request(RequestHelper options, Action<RequestException, ResponseHelper> callback)
{
Request(options, callback);
StaticCoroutine.StartCoroutine(HttpBase.DefaultUnityWebRequest(options, callback));
}

/// <summary>
Expand Down

0 comments on commit 26d511e

Please sign in to comment.