Skip to content

Commit

Permalink
Merge pull request #1344 from DuendeSoftware/joe/returnurlparser-null…
Browse files Browse the repository at this point in the history
…ability

Fixes nullability annotation on IReturnUrlParser.ParseAsync
  • Loading branch information
brockallen authored Jul 7, 2023
2 parents 4b41178 + 4f050e1 commit d7cdd3c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/IdentityServer/Services/Default/OidcReturnUrlParser.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) Duende Software. All rights reserved.
// See LICENSE in the project root for license information.


using System;
using System.Threading.Tasks;
using Duende.IdentityServer.Extensions;
Expand Down
2 changes: 1 addition & 1 deletion src/IdentityServer/Services/IReturnUrlParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public interface IReturnUrlParser
/// </summary>
/// <param name="returnUrl">The return URL.</param>
/// <returns></returns>
Task<AuthorizationRequest> ParseAsync(string returnUrl);
Task<AuthorizationRequest?> ParseAsync(string returnUrl);

/// <summary>
/// Determines whether the return URL is valid.
Expand Down

0 comments on commit d7cdd3c

Please sign in to comment.