Skip to content

Commit aab1baf

Browse files
authored
The GraphServiceClient will complain if that parameter is specified and yet it’s null
1 parent faf0f94 commit aab1baf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

2-WebApp-graph-user/2-1-Call-MSGraph/Services/GraphServiceClientFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace WebApp_OpenIDConnect_DotNet.Services
99
public class GraphServiceClientFactory
1010
{
1111
public static GraphServiceClient GetAuthenticatedGraphClient(Func<Task<string>> acquireAccessToken,
12-
string baseUrl = null)
12+
string baseUrl)
1313
{
1414

1515
return new GraphServiceClient(baseUrl, new CustomAuthenticationProvider(acquireAccessToken));

0 commit comments

Comments
 (0)