Skip to content

Commit 503049f

Browse files
committed
Fix optional parameter order requirement
1 parent 1b97aa7 commit 503049f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Functions/Client.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public static async Task<T> Invoke<T>(string url, string token = null, InvokeFun
6161
/// <param name="options"></param>
6262
/// <returns></returns>
6363
/// <exception cref="RequestException"></exception>
64-
private static async Task<HttpResponseMessage> HandleRequest(string url, string token = null, InvokeFunctionOptions options)
64+
private static async Task<HttpResponseMessage> HandleRequest(string url, string token = null, InvokeFunctionOptions options = null)
6565
{
6666
if (options == null)
6767
{

0 commit comments

Comments
 (0)