Skip to content

Commit 9de9d08

Browse files
iamcarbonabergs
authored andcommitted
Update _getEndpointsUrl
1 parent 66b48d5 commit 9de9d08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Src/Fido2/Metadata/ConformanceMetadataRepository.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public sealed class ConformanceMetadataRepository : IMetadataRepository
3636

3737
private readonly string _origin;
3838

39-
private readonly string _getEndpointsUrl = "https://mds3.certinfra.fidoalliance.org/getEndpoints";
39+
private readonly string _getEndpointsUrl = "https://mds3.fido.tools/getEndpoints";
4040

4141
public ConformanceMetadataRepository(HttpClient? client, string origin)
4242
{
@@ -66,7 +66,7 @@ public async Task<MetadataBLOBPayload> GetBLOBAsync(CancellationToken cancellati
6666
}
6767

6868
await using var responseStream = await response.Content.ReadAsStreamAsync(cancellationToken);
69-
MDSGetEndpointResponse? result = await JsonSerializer.DeserializeAsync(responseStream, FidoSerializerContext.Default.MDSGetEndpointResponse, cancellationToken: cancellationToken);
69+
MDSGetEndpointResponse? result = await JsonSerializer.DeserializeAsync(responseStream, FidoSerializerContext.Default.MDSGetEndpointResponse, cancellationToken);
7070
var conformanceEndpoints = result!.Result;
7171

7272
var combinedBlob = new MetadataBLOBPayload

0 commit comments

Comments
 (0)