Skip to content

Commit

Permalink
fix saml2 idp metadata as file read error
Browse files Browse the repository at this point in the history
  • Loading branch information
jxnkwlp committed Nov 8, 2023
1 parent 0636352 commit 389ffdb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Linq;
using System.Net.Http;
using System.Threading;
Expand Down Expand Up @@ -45,7 +45,7 @@ public async Task<Saml2Configuration> GetConfigurationAsync(CancellationToken ca

if (_idpMetadataUri.IsFile)
{
_ = entityDescriptor.ReadIdPSsoDescriptorFromFile(_idpMetadataUri.ToString());
_ = entityDescriptor.ReadIdPSsoDescriptorFromFile(_idpMetadataUri.LocalPath);
}
else
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageVersion>0.2.0</PackageVersion>
<PackageVersion>0.2.1</PackageVersion>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 389ffdb

Please sign in to comment.