Skip to content

Commit d67512a

Browse files
committed
Normalize the issuer assigned to the Contentful provider
1 parent 36a3fcb commit d67512a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/OpenIddict.Client.WebIntegration/OpenIddictClientWebIntegrationProviders.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@
563563

564564
<Provider Name="Contentful" Id="3d820b1e-33c7-4934-a783-48745343d53b"
565565
Documentation="https://www.contentful.com/developers/docs/extensibility/oauth/">
566-
<Environment Issuer="https://be.contentful.com">
566+
<Environment Issuer="https://be.contentful.com/">
567567
<Configuration AuthorizationEndpoint="https://be.contentful.com/oauth/authorize"
568568
TokenEndpoint="https://be.contentful.com/oauth/token"
569569
UserInfoEndpoint="https://api.contentful.com/users/me" />

src/OpenIddict.EntityFrameworkCore/Stores/OpenIddictEntityFrameworkCoreTokenStore.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,6 @@ public virtual ValueTask<TToken> InstantiateAsync(CancellationToken cancellation
595595
public virtual async IAsyncEnumerable<TToken> ListAsync(int? count, int? offset,
596596
[EnumeratorCancellation] CancellationToken cancellationToken)
597597
{
598-
599598
var context = await Context.GetDbContextAsync(cancellationToken);
600599

601600
var query = context.Set<TToken>()

0 commit comments

Comments
 (0)