From fdab2172d9c3a5af3fbbbcc81964717cfe6dd8c1 Mon Sep 17 00:00:00 2001 From: martincostello Date: Thu, 3 Jun 2021 13:38:07 +0100 Subject: [PATCH] Update providers to .NET 6 Update the new providers from the 5.0.5 release to .NET 6. --- src/AspNet.Security.OAuth.Notion/NotionAuthenticationHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AspNet.Security.OAuth.Notion/NotionAuthenticationHandler.cs b/src/AspNet.Security.OAuth.Notion/NotionAuthenticationHandler.cs index c9a274452..fb98bb143 100644 --- a/src/AspNet.Security.OAuth.Notion/NotionAuthenticationHandler.cs +++ b/src/AspNet.Security.OAuth.Notion/NotionAuthenticationHandler.cs @@ -87,7 +87,7 @@ protected override async Task CreateTicketAsync( Options, Backchannel, tokens, - tokens.Response.RootElement); + tokens!.Response!.RootElement); context.RunClaimActions(); await Options.Events.CreatingTicket(context);