Skip to content

Commit

Permalink
PAS-563 | RPID is not mapped correctly when retrieving credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
jonashendrickx committed Aug 26, 2024
1 parent c8beda6 commit 1cc8117
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Passwordless/Models/Credential.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.Text.Json.Serialization;

namespace Passwordless;

Expand Down Expand Up @@ -32,7 +33,7 @@ public record Credential(
DateTime CreatedAt,
Guid AaGuid,
DateTime LastUsedAt,
string RpId,
[property: JsonPropertyName("rpid")] string RpId,
string Origin,
string Country,
string Device,
Expand Down

0 comments on commit 1cc8117

Please sign in to comment.